You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
283 B
18 lines
283 B
8 years ago
|
# frozen_string_literal: true
|
||
|
|
||
|
class Api::Activitypub::NotesController < ApiController
|
||
|
before_action :set_status
|
||
|
|
||
|
respond_to :activitystreams2
|
||
|
|
||
|
def show
|
||
|
forbidden unless @status.permitted?
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def set_status
|
||
|
@status = Status.find(params[:id])
|
||
|
end
|
||
|
end
|