* Add more granular OAuth scopes * Add human-readable descriptions of the new scopes * Ensure new scopes look good on the app UI * Add tests * Group scopes in screen and color-code dangerous ones * Fix wrong extra scope
		
			
				
	
	
		
			39 lines
		
	
	
		
			957 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			957 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class Api::V1::Statuses::FavouritesController < Api::BaseController
 | 
						|
  include Authorization
 | 
						|
 | 
						|
  before_action -> { doorkeeper_authorize! :write, :'write:favourites' }
 | 
						|
  before_action :require_user!
 | 
						|
 | 
						|
  respond_to :json
 | 
						|
 | 
						|
  def create
 | 
						|
    @status = favourited_status
 | 
						|
    render json: @status, serializer: REST::StatusSerializer
 | 
						|
  end
 | 
						|
 | 
						|
  def destroy
 | 
						|
    @status = requested_status
 | 
						|
    @favourites_map = { @status.id => false }
 | 
						|
 | 
						|
    UnfavouriteWorker.perform_async(current_user.account_id, @status.id)
 | 
						|
 | 
						|
    render json: @status, serializer: REST::StatusSerializer, relationships: StatusRelationshipsPresenter.new([@status], current_user&.account_id, favourites_map: @favourites_map)
 | 
						|
  end
 | 
						|
 | 
						|
  private
 | 
						|
 | 
						|
  def favourited_status
 | 
						|
    service_result.status.reload
 | 
						|
  end
 | 
						|
 | 
						|
  def service_result
 | 
						|
    FavouriteService.new.call(current_user.account, requested_status)
 | 
						|
  end
 | 
						|
 | 
						|
  def requested_status
 | 
						|
    Status.find(params[:status_id])
 | 
						|
  end
 | 
						|
end
 |