mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-03 13:34:30 +00:00
73540ffe6b
* Move ApiController to Api/BaseController * API controllers inherit from Api::BaseController * Add coverage for various error cases in api/base controller
20 lines
304 B
Ruby
20 lines
304 B
Ruby
# 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
|