1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-16 23:59:01 +09:00
whippy-edition/app/controllers/api/activitypub/notes_controller.rb

20 lines
304 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Api::Activitypub::NotesController < Api::BaseController
include Authorization
before_action :set_status
respond_to :activitystreams2
def show
authorize @status, :show?
end
private
def set_status
@status = Status.find(params[:id])
end
end