diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-09-11 23:50:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-11 23:50:37 +0200 |
commit | 0ef9d45d0581dddf2f325033c43721f42fcfca9e (patch) | |
tree | 305aa87274cc4a045f6df4b95dcce7a4f7eea238 /app/controllers/api/v1 | |
parent | a6a206ef850da46a1fbdf262fe4527a44f2ceb0f (diff) |
Fix error when following locked accounts (#4896)
Diffstat (limited to 'app/controllers/api/v1')
-rw-r--r-- | app/controllers/api/v1/accounts_controller.rb | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/app/controllers/api/v1/accounts_controller.rb b/app/controllers/api/v1/accounts_controller.rb index 656cacd8a..b3fc4e561 100644 --- a/app/controllers/api/v1/accounts_controller.rb +++ b/app/controllers/api/v1/accounts_controller.rb @@ -15,16 +15,9 @@ class Api::V1::AccountsController < Api::BaseController def follow FollowService.new.call(current_user.account, @account.acct) - unless @account.locked? - relationships = AccountRelationshipsPresenter.new( - [@account.id], - current_user.account_id, - following_map: { @account.id => true }, - requested_map: { @account.id => false } - ) - end + options = @account.locked? ? {} : { following_map: { @account.id => true }, requested_map: { @account.id => false } } - render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships + render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships(options) end def block @@ -58,7 +51,7 @@ class Api::V1::AccountsController < Api::BaseController @account = Account.find(params[:id]) end - def relationships - AccountRelationshipsPresenter.new([@account.id], current_user.account_id) + def relationships(options = {}) + AccountRelationshipsPresenter.new([@account.id], current_user.account_id, options) end end |