~cytrogen/masto-fe

ref: eba3411bfa40cbb36205f58a36e34c446fed0ffa masto-fe/app/controllers/api/v1/statuses/histories_controller.rb -rw-r--r-- 551 bytes
eba3411b — Plastikmensch Re-allow title attribute in <abbr> (#2254) 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