diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-12-21 12:08:49 -0600 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-12-21 12:08:49 -0600 |
commit | b8f7ccf22729b77fbb5a44ecda01de5329d07adc (patch) | |
tree | a756895666b8a6513c34a7c1286aea98c204016f /app/controllers | |
parent | 82f98a770b088a3ffb2c165fd22ccb0adadd57a7 (diff) |
add option to set mutes that apply only to timelines
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/api/v1/accounts_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/accounts_controller.rb b/app/controllers/api/v1/accounts_controller.rb index b0c62778e..e452bd0f5 100644 --- a/app/controllers/api/v1/accounts_controller.rb +++ b/app/controllers/api/v1/accounts_controller.rb @@ -42,7 +42,7 @@ class Api::V1::AccountsController < Api::BaseController end def mute - MuteService.new.call(current_user.account, @account, notifications: truthy_param?(:notifications)) + MuteService.new.call(current_user.account, @account, notifications: truthy_param?(:notifications), timelines_only: truthy_param?(:timelines_only)) render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships end |