diff options
author | Surinna Curtis <ekiru.0@gmail.com> | 2017-09-13 18:32:10 -0500 |
---|---|---|
committer | Surinna Curtis <ekiru.0@gmail.com> | 2017-09-13 21:47:30 -0500 |
commit | f9d7b8a94f4a89d76081a6265103f6d7439be250 (patch) | |
tree | 6e91787f0181b1b7ec3e658f2ee35710e2071aaa /app/services | |
parent | 211f0a951375a33ed4278eef030e76a6bde9c396 (diff) |
Refactor handling of default params for muting to make code cleaner
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/mute_service.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/services/mute_service.rb b/app/services/mute_service.rb index fc63f83e9..56cbebd5d 100644 --- a/app/services/mute_service.rb +++ b/app/services/mute_service.rb @@ -1,9 +1,9 @@ # frozen_string_literal: true class MuteService < BaseService - def call(account, target_account, **opts) + def call(account, target_account, notifications: nil) return if account.id == target_account.id FeedManager.instance.clear_from_timeline(account, target_account) - account.mute!(target_account, **opts.slice(:notifications)) + account.mute!(target_account, notifications: notifications) end end |