mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-24 11:12:42 +00:00
Add missing mailer for quote notifications (#35652)
This commit is contained in:
parent
f68bd21600
commit
80aadc55df
11 changed files with 66 additions and 1 deletions
|
|
@ -30,6 +30,7 @@ class Notification < ApplicationRecord
|
|||
'FollowRequest' => :follow_request,
|
||||
'Favourite' => :favourite,
|
||||
'Poll' => :poll,
|
||||
'Quote' => :quote,
|
||||
}.freeze
|
||||
|
||||
# Please update app/javascript/api_types/notification.ts if you change this
|
||||
|
|
|
|||
|
|
@ -43,6 +43,7 @@ class UserSettings
|
|||
setting :reblog, default: false
|
||||
setting :favourite, default: false
|
||||
setting :mention, default: true
|
||||
setting :quote, default: true
|
||||
setting :follow_request, default: true
|
||||
setting :report, default: true
|
||||
setting :pending_account, default: true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue