2022-11-24 12:50:32 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-01-28 02:22:43 +01:00
|
|
|
class Api::V1::Statuses::ReactionsController < Api::V1::Statuses::BaseController
|
2022-11-24 12:50:32 +01:00
|
|
|
before_action -> { doorkeeper_authorize! :write, :'write:favourites' }
|
|
|
|
before_action :require_user!
|
|
|
|
|
2022-12-01 03:24:08 +01:00
|
|
|
def create
|
2024-01-18 01:04:11 +01:00
|
|
|
ReactService.new.call(current_account, @status, params[:id])
|
2023-05-07 23:27:19 +02:00
|
|
|
render json: @status, serializer: REST::StatusSerializer
|
2022-11-24 12:50:32 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2024-01-18 01:04:11 +01:00
|
|
|
UnreactWorker.perform_async(current_account.id, @status.id, params[:id])
|
2023-05-07 23:27:19 +02:00
|
|
|
|
|
|
|
render json: @status, serializer: REST::StatusSerializer, relationships: StatusRelationshipsPresenter.new([@status], current_account.id, reactions_map: { @status.id => false })
|
|
|
|
rescue Mastodon::NotPermittedError
|
|
|
|
not_found
|
2022-11-24 12:50:32 +01:00
|
|
|
end
|
|
|
|
end
|