diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-05-09 12:24:08 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:16:23 -0500 |
commit | 5c59d1837f2d3152342ef45bf7827495183e62dd (patch) | |
tree | 0a29c58ef906a2f67e91321d977c8142f0f1281f /app/models | |
parent | 0782dc390525c5d1db66ea53e1208689c7d0bfcb (diff) |
Make user settings for status filter accessible from `account` model.
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/account.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/models/account.rb b/app/models/account.rb index 0b647a965..6e7cf3773 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -125,6 +125,13 @@ class Account < ApplicationRecord :always_local?, :default_local?, :no_blabber_blocks?, + :hide_replies_of_muted?, + :hide_replies_of_blocked?, + :hide_replies_of_blocker?, + :hide_mntions_of_muted?, + :hide_mntions_of_blocked?, + :hide_mntions_of_blocker?, + :hide_mntions_of_outside_scope?, to: :user, prefix: true, allow_nil: true |