mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 23:21:11 +01:00
29 lines
651 B
Ruby
29 lines
651 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Api::V1::Statuses::PinsController < Api::BaseController
|
||
|
include Authorization
|
||
|
|
||
|
before_action -> { doorkeeper_authorize! :write }
|
||
|
before_action :require_user!
|
||
|
before_action :set_status
|
||
|
|
||
|
respond_to :json
|
||
|
|
||
|
def create
|
||
|
StatusPin.create!(account: current_account, status: @status)
|
||
|
render json: @status, serializer: REST::StatusSerializer
|
||
|
end
|
||
|
|
||
|
def destroy
|
||
|
pin = StatusPin.find_by(account: current_account, status: @status)
|
||
|
pin&.destroy!
|
||
|
render json: @status, serializer: REST::StatusSerializer
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def set_status
|
||
|
@status = Status.find(params[:status_id])
|
||
|
end
|
||
|
end
|