diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2015-11-10 20:18:13 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2016-02-07 10:54:20 +0100 |
commit | 64072461dfcc74857087b23c9ba7d9812b6afe40 (patch) | |
tree | 753980782ed91c694fe583495627a5dc8b8b7f4b /web/template | |
parent | aa5e58db81b8a243e03d0f08925c2d1f34c82304 (diff) | |
download | aurweb-64072461dfcc74857087b23c9ba7d9812b6afe40.tar.xz |
Add support for package update notifications
Introduce a new notification option to receive notifications when a new
commit is pushed to a package repository.
Implements FS#30109.
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/template')
-rw-r--r-- | web/template/account_edit_form.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/web/template/account_edit_form.php b/web/template/account_edit_form.php index 4f92f69..b9affd6 100644 --- a/web/template/account_edit_form.php +++ b/web/template/account_edit_form.php @@ -139,6 +139,10 @@ <label for="id_commentnotify"><?= __("Notify of new comments") ?>:</label> <input type="checkbox" name="CN" id="id_commentnotify" <?= $CN ? 'checked="checked"' : '' ?> /> </p> + <p> + <label for="id_updatenotify"><?= __("Notify of package updates") ?>:</label> + <input type="checkbox" name="UN" id="id_updatenotify" <?= $UN ? 'checked="checked"' : '' ?> /> + </p> </fieldset> <fieldset> |