1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-28 14:58:21 +09:00

Show error message to suspended user (#3281)

This commit is contained in:
Yamagishi Kazutoshi 2017-05-24 23:39:09 +09:00 committed by Eugen Rochko
parent bbc3db8b20
commit 676ba50601

View File

@ -39,7 +39,7 @@ class ApplicationController < ActionController::Base
end
def check_suspension
head 403 if current_user.account.suspended?
forbidden if current_user.account.suspended?
end
protected