blob: 8c5457c8273e16ae80674598143fd31699e3f1a2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# frozen_string_literal: true
class Api::V1::Statuses::HidesController < Api::BaseController
include Authorization
before_action -> { doorkeeper_authorize! :write, :'write:mutes' }
before_action :require_user!
before_action :set_status
def create
MuteStatusService.new.call(current_account, @status)
render json: @status, serializer: REST::StatusSerializer
end
def destroy
current_account.unmute_status!(@status)
render json: @status, serializer: REST::StatusSerializer
end
private
def set_status
@status = Status.find(params[:status_id])
authorize @status, :show?
rescue Mastodon::NotPermittedError
not_found
end
end
|