diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-04-29 00:54:44 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:16:22 -0500 |
commit | db67333d626cc8ce1a50fe1c0908c186d5382c79 (patch) | |
tree | 62ab442406d9123e3dedde063f086852c0076793 /app/models | |
parent | 933d7afa873a0440c302ec767162fe726c46f0f0 (diff) |
Add option to filter packmate thread branches where you don't follow all the participants.
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/user.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/models/user.rb b/app/models/user.rb index 29db2e078..b4328afcb 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -118,6 +118,7 @@ class User < ApplicationRecord :hide_mntions_muted, :hide_mntions_blocked, :hide_mntions_blocker, + :hide_mntions_packm8, :gently_kobolds, :user_is_kobold, @@ -262,6 +263,10 @@ class User < ApplicationRecord settings.hide_mntions_blocker || true end + def setting_hide_mntions_packm8 + settings.hide_mntions_packm8 || true + end + def setting_gently_kobolds settings.gently_kobolds || false end |