~cytrogen/masto-fe

ref: 05f9e39b32f15d71eb9ec524d1ab871e5c0d03da masto-fe/app/controllers/api/v1/statuses/histories_controller.rb -rw-r--r-- 551 bytes
05f9e39b — Matt Jankowski Fix `RSpec/VerifiedDoubles` cop (#25469) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

class Api::V1::Statuses::HistoriesController < Api::BaseController
  include Authorization

  before_action -> { authorize_if_got_token! :read, :'read:statuses' }
  before_action :set_status

  def show
    cache_if_unauthenticated!
    render json: @status.edits.includes(:account, status: [:account]), each_serializer: REST::StatusEditSerializer
  end

  private

  def set_status
    @status = Status.find(params[:status_id])
    authorize @status, :show?
  rescue Mastodon::NotPermittedError
    not_found
  end
end