Change REST API to return empty data for suspended accounts (#14765)

This commit is contained in:
Eugen Rochko
2020-09-11 15:16:29 +02:00
committed by GitHub
parent e6d67f85e2
commit e6b272e5c9
22 changed files with 79 additions and 30 deletions

View File

@@ -12,6 +12,8 @@ class StatusPolicy < ApplicationPolicy
end
def show?
return false if author.suspended?
if requires_mention?
owned? || mention_exists?
elsif private?