[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
}