about summary refs log tree commit diff
path: root/app/controllers/api/activitypub/accounts_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/api/activitypub/accounts_controller.rb')
-rw-r--r--app/controllers/api/activitypub/accounts_controller.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/app/controllers/api/activitypub/accounts_controller.rb b/app/controllers/api/activitypub/accounts_controller.rb
deleted file mode 100644
index 82936f062..000000000
--- a/app/controllers/api/activitypub/accounts_controller.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# frozen_string_literal: true
-
-class Api::Activitypub::AccountsController < ApiController
-  before_action :set_account
-
-  respond_to :'application/activity+json'
-  respond_to :'application/ld+json; profile="https://www.w3.org/ns/activitystreams#"'
-
-  def show
-    render content_type: :'application/ld+json; profile="https://www.w3.org/ns/activitystreams#"'
-  end
-
-  private
-
-  def set_account
-    @account = Account.find(params[:id])
-  end
-end