Browse Source

Change following and followers API to be accessible without being logged in (#18964)

closed-social-glitch-2
Eugen Rochko 2 years ago
committed by GitHub
parent
commit
c99c106ef0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      app/controllers/api/v1/accounts/follower_accounts_controller.rb
  2. +1
    -1
      app/controllers/api/v1/accounts/following_accounts_controller.rb

+ 1
- 1
app/controllers/api/v1/accounts/follower_accounts_controller.rb View File

@ -1,7 +1,7 @@
# frozen_string_literal: true
class Api::V1::Accounts::FollowerAccountsController < Api::BaseController
before_action -> { doorkeeper_authorize! :read, :'read:accounts' }
before_action -> { authorize_if_got_token! :read, :'read:accounts' }
before_action :set_account
after_action :insert_pagination_headers

+ 1
- 1
app/controllers/api/v1/accounts/following_accounts_controller.rb View File

@ -1,7 +1,7 @@
# frozen_string_literal: true
class Api::V1::Accounts::FollowingAccountsController < Api::BaseController
before_action -> { doorkeeper_authorize! :read, :'read:accounts' }
before_action -> { authorize_if_got_token! :read, :'read:accounts' }
before_action :set_account
after_action :insert_pagination_headers

Loading…
Cancel
Save