forked from glitch-soc/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed, modified, and rebased from glitch-soc#2221. Co-authored-by: fef <[email protected]> Co-authored-by: Jeremy Kescher <[email protected]> Co-authored-by: neatchee <[email protected]> Co-authored-by: Ivan Rodriguez <[email protected]> Co-authored-by: Plastikmensch <[email protected]>
- Loading branch information
1 parent
e853355
commit cc2400b
Showing
59 changed files
with
1,054 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# frozen_string_literal: true | ||
|
||
class Api::V1::Statuses::ReactionsController < Api::BaseController | ||
include Authorization | ||
|
||
before_action -> { doorkeeper_authorize! :write, :'write:favourites' } | ||
before_action :require_user! | ||
before_action :set_status | ||
|
||
def create | ||
ReactService.new.call(current_account, @status, params[:id]) | ||
render json: @status, serializer: REST::StatusSerializer | ||
end | ||
|
||
def destroy | ||
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 | ||
not_found | ||
end | ||
|
||
private | ||
|
||
def set_status | ||
@status = Status.find(params[:status_id]) | ||
authorize @status, :show? | ||
rescue Mastodon::NotPermittedError | ||
not_found | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.