2018-08-09 07:56:53 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::Accounts::PinsController < Api::BaseController
|
|
|
|
include Authorization
|
|
|
|
|
|
|
|
before_action -> { doorkeeper_authorize! :write, :'write:accounts' }
|
|
|
|
before_action :require_user!
|
|
|
|
before_action :set_account
|
|
|
|
|
|
|
|
def create
|
2022-11-08 15:39:15 +00:00
|
|
|
AccountPin.find_or_create_by!(account: current_account, target_account: @account)
|
2018-08-09 07:56:53 +00:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships_presenter
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
pin = AccountPin.find_by(account: current_account, target_account: @account)
|
|
|
|
pin&.destroy!
|
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships_presenter
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:account_id])
|
|
|
|
end
|
|
|
|
|
|
|
|
def relationships_presenter
|
2023-12-18 16:14:43 +00:00
|
|
|
AccountRelationshipsPresenter.new([@account], current_user.account_id)
|
2018-08-09 07:56:53 +00:00
|
|
|
end
|
|
|
|
end
|