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.
 
 
 
 
 
 
metu.life/app/controllers/api/activitypub/notes_controller.rb

17 lines
283 B

# 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