ReactionsController: Don't check for status reaction existence in destroy
UnreactService checks for its existence in the background anyway, so remove redundant checks.
This commit is contained in:
parent
5d0a1a7b74
commit
0f96d0fbb7
1 changed files with 2 additions and 10 deletions
|
@ -5,7 +5,7 @@ class Api::V1::Statuses::ReactionsController < Api::BaseController
|
|||
|
||||
before_action -> { doorkeeper_authorize! :write, :'write:favourites' }
|
||||
before_action :require_user!
|
||||
before_action :set_status, only: [:create]
|
||||
before_action :set_status
|
||||
|
||||
def create
|
||||
ReactService.new.call(current_account, @status, params[:id])
|
||||
|
@ -13,15 +13,7 @@ class Api::V1::Statuses::ReactionsController < Api::BaseController
|
|||
end
|
||||
|
||||
def destroy
|
||||
react = current_account.status_reactions.find_by(status_id: params[:status_id], name: params[:id])
|
||||
|
||||
if react
|
||||
@status = react.status
|
||||
UnreactWorker.perform_async(current_account.id, @status.id, params[:id])
|
||||
else
|
||||
@status = Status.find(params[:status_id])
|
||||
authorize @status, :show?
|
||||
end
|
||||
UnreactWorker.perform_async(current_account.id, @status.id, params[:id])
|
||||
|
||||
render json: @status, serializer: REST::StatusSerializer, relationships: StatusRelationshipsPresenter.new([@status], current_account.id, reactions_map: { @status.id => false })
|
||||
rescue Mastodon::NotPermittedError
|
||||
|
|
Loading…
Reference in a new issue