diff options
author | Ivan Tashkinov <ivantashkinov@gmail.com> | 2020-04-07 21:52:32 +0300 |
---|---|---|
committer | Ivan Tashkinov <ivantashkinov@gmail.com> | 2020-04-07 21:52:32 +0300 |
commit | 1a4875adfa8fa8f65f1db7b4ec3cf868b7e3dee7 (patch) | |
tree | f62a2156777942c6ef8753ccc2de7e23a23f5ff5 /config/description.exs | |
parent | dd4d10b275e76afc029aea642ae3d69b07e33d81 (diff) | |
download | pleroma-1a4875adfa8fa8f65f1db7b4ec3cf868b7e3dee7.tar.gz pleroma-1a4875adfa8fa8f65f1db7b4ec3cf868b7e3dee7.zip |
[#1559] Support for "follow_request" notifications (configurable).
(Not currently supported by PleromaFE, thus disabled by default).
Diffstat (limited to 'config/description.exs')
-rw-r--r-- | config/description.exs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/config/description.exs b/config/description.exs index 642f1a3ce..b1938912c 100644 --- a/config/description.exs +++ b/config/description.exs @@ -2269,6 +2269,20 @@ config :pleroma, :config_description, [ }, %{ group: :pleroma, + key: :notifications, + type: :group, + description: "Notification settings", + children: [ + %{ + key: :enable_follow_request_notifications, + type: :boolean, + description: + "Enables notifications on new follow requests (causes issues with older PleromaFE versions)." + } + ] + }, + %{ + group: :pleroma, key: Pleroma.Emails.UserEmail, type: :group, description: "Email template settings", |