2022-01-19 22:37:27 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-11-13 15:53:22 +01:00
|
|
|
class Api::V1::Statuses::HistoriesController < Api::V1::Statuses::BaseController
|
2022-01-19 22:37:27 +01:00
|
|
|
before_action -> { authorize_if_got_token! :read, :'read:statuses' }
|
|
|
|
|
|
|
|
def show
|
2023-04-25 15:41:34 +02:00
|
|
|
cache_if_unauthenticated!
|
2023-06-22 14:56:14 +02:00
|
|
|
render json: status_edits, each_serializer: REST::StatusEditSerializer
|
2022-01-19 22:37:27 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2023-06-22 14:56:14 +02:00
|
|
|
def status_edits
|
|
|
|
@status.edits.includes(:account, status: [:account]).to_a.presence || [@status.build_snapshot(at_time: @status.edited_at || @status.created_at)]
|
|
|
|
end
|
2022-01-19 22:37:27 +01:00
|
|
|
end
|