mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
f3be605286
Rename Activitypub to ActivityPub
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
|