diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-05-23 19:01:30 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-05-23 19:01:30 +0200 |
commit | c0dc247bcee9080989d5e5354e54f9d320be1f13 (patch) | |
tree | 708074cbed581c48d619008f8ed58d962e0f15b7 /app/models | |
parent | 0744d6e57186292e751026fbb749728d56a8ed2d (diff) | |
parent | 89d600bedb023a9656b98d22deab10f8c051a664 (diff) |
Merge branch 'master' into glitch-soc/merge-upstream
Conflicts: - app/models/account.rb - app/views/settings/profiles/show.html.haml - spec/controllers/api/v1/accounts/credentials_controller_spec.rb Conflicts were due to an increase in account bio length upstream, which is already covered in glitch-soc through `MAX_BIO_CHARS`.
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/notification.rb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/app/models/notification.rb b/app/models/notification.rb index 300269e24..498673ff1 100644 --- a/app/models/notification.rb +++ b/app/models/notification.rb @@ -41,9 +41,13 @@ class Notification < ApplicationRecord validates :account_id, uniqueness: { scope: [:activity_type, :activity_id] } validates :activity_type, inclusion: { in: TYPE_CLASS_MAP.values } - scope :browserable, ->(exclude_types = []) { + scope :browserable, ->(exclude_types = [], account_id = nil) { types = TYPE_CLASS_MAP.values - activity_types_from_types(exclude_types + [:follow_request]) - where(activity_type: types) + if account_id.nil? + where(activity_type: types) + else + where(activity_type: types, from_account_id: account_id) + end } cache_associated :from_account, status: STATUS_INCLUDES, mention: [status: STATUS_INCLUDES], favourite: [:account, status: STATUS_INCLUDES], follow: :account, poll: [status: STATUS_INCLUDES] |