diff options
author | Gary Kim <gary@garykim.dev> | 2019-08-29 14:05:42 +0000 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2019-08-29 17:05:42 +0300 |
commit | f1c414882cbbdb22c6bcc6315c03a1d3c8454164 (patch) | |
tree | 1aee7f07018000f9890b3929a3a79b67a72fcb30 /templates | |
parent | 9ef1e5da27cbe7a493c5e78ebba2bbd7e2bab06f (diff) | |
download | gitea-f1c414882cbbdb22c6bcc6315c03a1d3c8454164.tar.gz gitea-f1c414882cbbdb22c6bcc6315c03a1d3c8454164.zip |
Add Ability for User to Customize Email Notification Frequency (#7813)
* Add Backend Logic for Toggling Email Notification
This commit adds the backend logic for
allowing users to enable or disable email
notifications. The implementation ensures
that only issue notification emails get disabled
and important emails are still sent regardless
of the setting.
The UI to toggle this setting has not yet been
implemented.
* Add UI and complete user email notification enable
This commit completes the functionality to allow
users to disable their own email notifications.
Signed-off-by: Gary Kim <gary@garykim.dev>
* Add Third Option for Only Email on Mention
Signed-off-by: Gary Kim <gary@garykim.dev>
* Readd NOT NULL to new preference string
Signed-off-by: Gary Kim <gary@garykim.dev>
* Add Tests and Rewrite Comment
Signed-off-by: Gary Kim <gary@garykim.dev>
* Allow admin to set default email frequency
Signed-off-by: Gary Kim <gary@garykim.dev>
* Add new config option to docs
Signed-off-by: Gary Kim <gary@garykim.dev>
* Fix a few mistakes
Signed-off-by: Gary Kim <gary@garykim.dev>
* Only update required columns
Signed-off-by: Gary Kim <gary@garykim.dev>
* Simplify an error check
Signed-off-by: Gary Kim <gary@garykim.dev>
* Make email_notification_preference column in DB be VARCHAR(20)
Signed-off-by: Gary Kim <gary@garykim.dev>
* Handle errors
Signed-off-by: Gary Kim <gary@garykim.dev>
* Update models/migrations/v93.go
Co-Authored-By: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/user/settings/account.tmpl | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/templates/user/settings/account.tmpl b/templates/user/settings/account.tmpl index 778103e44d..dcb5770acc 100644 --- a/templates/user/settings/account.tmpl +++ b/templates/user/settings/account.tmpl @@ -43,7 +43,30 @@ <div class="ui attached segment"> <div class="ui email list"> <div class="item"> - {{.i18n.Tr "settings.email_desc"}} + <form action="{{AppSubUrl}}/user/settings/account/email" class="ui form" method="post"> + {{.i18n.Tr "settings.email_desc"}} + <div class="right floated content"> + <div class="field"> + <button class="ui green button">{{$.i18n.Tr "settings.email_notifications.submit"}}</button> + </div> + </div> + <div class="right floated content"> + {{$.CsrfTokenHtml}} + <input name="_method" type="hidden" value="NOTIFICATION"> + <div class="field"> + <div class="ui selection dropdown" tabindex="0"> + <input name="preference" type="hidden" value="{{.EmailNotificationsPreference}}"> + <i class="dropdown icon"></i> + <div class="text">{{$.i18n.Tr "settings.email_notifications"}}</div> + <div class="menu"> + <div data-value="enabled" class="{{if eq .EmailNotificationsPreference "enabled"}}active selected {{end}}item">{{$.i18n.Tr "settings.email_notifications.enable"}}</div> + <div data-value="onmention" class="{{if eq .EmailNotificationsPreference "onmention"}}active selected {{end}}item">{{$.i18n.Tr "settings.email_notifications.onmention"}}</div> + <div data-value="disabled" class="{{if eq .EmailNotificationsPreference "disabled"}}active selected {{end}}item">{{$.i18n.Tr "settings.email_notifications.disable"}}</div> + </div> + </div> + </div> + </div> + </form> </div> {{range .Emails}} <div class="item"> @@ -103,7 +126,7 @@ <i class="dropdown icon"></i> <div class="text"> {{range $i,$a := .AllThemes}} - {{if eq $.SignedUser.Theme $a}}{{$a}}{{end}} + {{if eq $.SignedUser.Theme $a}}{{$a}}{{end}} {{end}} </div> |