This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-04-22 20:21:10 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-18 16:51:04 -07:00
|
|
|
class Api::ActivityPub::NotesController < Api::BaseController
|
2017-05-29 09:22:22 -07:00
|
|
|
include Authorization
|
|
|
|
|
2017-04-22 20:21:10 -07:00
|
|
|
before_action :set_status
|
|
|
|
|
|
|
|
respond_to :activitystreams2
|
|
|
|
|
|
|
|
def show
|
2017-05-29 09:22:22 -07:00
|
|
|
authorize @status, :show?
|
2017-04-22 20:21:10 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_status
|
|
|
|
@status = Status.find(params[:id])
|
|
|
|
end
|
|
|
|
end
|