Add "locked" flag to accounts, prevent blocked users from following, force-unfollow blocked users
This commit is contained in:
parent
f91b6fa9e1
commit
2d2154ba75
9 changed files with 27 additions and 3 deletions
|
@ -30,6 +30,10 @@ class ApiController < ApplicationController
|
|||
render json: { error: 'Remote SSL certificate could not be verified' }, status: 503
|
||||
end
|
||||
|
||||
rescue_from Mastodon::NotPermitted do
|
||||
render json: { error: 'This action is not allowed' }, status: 403
|
||||
end
|
||||
|
||||
def doorkeeper_unauthorized_render_options(error: nil)
|
||||
{ json: { error: (error.try(:description) || 'Not authorized') } }
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue