diff options
author | Evan Minto <evan.minto@gmail.com> | 2017-02-04 14:49:24 -0800 |
---|---|---|
committer | Evan Minto <evan.minto@gmail.com> | 2017-02-04 14:49:24 -0800 |
commit | 8bd8ea7c0406a8eeb145471475b105366e195e6a (patch) | |
tree | 56e01897e8e884c42dc02d6d8192f3ad7550b129 /app | |
parent | e2fbf8bc7479967baa84ef26eb03e19f0fd868e8 (diff) |
Remove unnecessary leftover code
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/api/activitypub/accounts_controller.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/controllers/api/activitypub/accounts_controller.rb b/app/controllers/api/activitypub/accounts_controller.rb index efb6413a0..82936f062 100644 --- a/app/controllers/api/activitypub/accounts_controller.rb +++ b/app/controllers/api/activitypub/accounts_controller.rb @@ -1,9 +1,7 @@ # frozen_string_literal: true class Api::Activitypub::AccountsController < ApiController - before_action -> { doorkeeper_authorize! :read }, except: [:show] - before_action :require_user!, except: [:show] - before_action :set_account, except: [:verify_credentials, :suggestions, :search] + before_action :set_account respond_to :'application/activity+json' respond_to :'application/ld+json; profile="https://www.w3.org/ns/activitystreams#"' |