From 8311ca63a801c5f0e240f2760b6aac8acc72f70f Mon Sep 17 00:00:00 2001 From: RaidMax Date: Sat, 23 Jul 2022 11:13:21 -0500 Subject: [PATCH] set default permission for read message to user --- Application/Commands/ReadMessageCommand.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Application/Commands/ReadMessageCommand.cs b/Application/Commands/ReadMessageCommand.cs index a09bebd8..dde5ef2d 100644 --- a/Application/Commands/ReadMessageCommand.cs +++ b/Application/Commands/ReadMessageCommand.cs @@ -24,7 +24,7 @@ namespace IW4MAdmin.Application.Commands Name = "readmessage"; Description = _translationLookup["COMMANDS_READ_MESSAGE_DESC"]; Alias = "rm"; - Permission = EFClient.Permission.Flagged; + Permission = EFClient.Permission.User; _contextFactory = contextFactory; _logger = logger; @@ -76,4 +76,4 @@ namespace IW4MAdmin.Application.Commands } } } -} \ No newline at end of file +}