Removed try clause from create action in status controller
Using catch statement in api_controller.rb to catch NotPermitted Exception, and render error message
This commit is contained in:
parent
87a6bed9e9
commit
9433d03705
|
@ -62,16 +62,11 @@ class Api::V1::StatusesController < ApiController
|
||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
begin
|
|
||||||
@status = PostStatusService.new.call(current_user.account, params[:status], params[:in_reply_to_id].blank? ? nil : Status.find(params[:in_reply_to_id]), media_ids: params[:media_ids],
|
@status = PostStatusService.new.call(current_user.account, params[:status], params[:in_reply_to_id].blank? ? nil : Status.find(params[:in_reply_to_id]), media_ids: params[:media_ids],
|
||||||
sensitive: params[:sensitive],
|
sensitive: params[:sensitive],
|
||||||
spoiler_text: params[:spoiler_text],
|
spoiler_text: params[:spoiler_text],
|
||||||
visibility: params[:visibility],
|
visibility: params[:visibility],
|
||||||
application: doorkeeper_token.application)
|
application: doorkeeper_token.application)
|
||||||
rescue Mastodon::NotPermitted => e
|
|
||||||
render json: {error: e.message}, status: 422
|
|
||||||
return
|
|
||||||
end
|
|
||||||
render action: :show
|
render action: :show
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Reference in a new issue