[MM-62092] Allow system admins to pull posts in from DMs they're not in (#29557)

Этот коммит содержится в:
Devin Binnie
2024-12-12 10:12:21 -05:00
коммит произвёл GitHub
родитель b60ce28726
Коммит 57372bd06b
2 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@@ -214,7 +214,7 @@ func getPostsForChannel(c *Context, w http.ResponseWriter, r *http.Request) {
c.Err = err
return
}
if !c.App.SessionHasPermissionToReadChannel(c.AppContext, *c.AppContext.Session(), channel) {
if !c.IsSystemAdmin() && !c.App.SessionHasPermissionToReadChannel(c.AppContext, *c.AppContext.Session(), channel) {
c.SetPermissionError(model.PermissionReadChannelContent)
return
}

Просмотреть файл

@@ -1994,6 +1994,14 @@ func TestGetPostsForChannel(t *testing.T) {
require.NoError(t, err)
CheckOKStatus(t, resp)
require.Len(t, posts.Order, 10, "expected 10 posts")
// allow viewing of direct messages
dmChannel := th.CreateDmChannel(th.BasicUser2)
th.CreateMessagePostNoClient(dmChannel, "test1", model.GetMillis())
posts, resp, err = c.GetPostsForChannel(context.Background(), dmChannel.Id, 0, 100, "", false, false)
require.NoError(t, err)
CheckOKStatus(t, resp)
})
}