diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-02-12 17:21:41 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-02-18 14:26:03 +0100 |
commit | 8387cd8ae35a0ad94a49a27ad8622bb7b8ed2b06 (patch) | |
tree | 30a304dcae073ea3b6ee409a279fc4946fd0a199 /settings/routes.php | |
parent | 3699728a3a02dd17ea617a7e8f781c09e837f360 (diff) | |
download | nextcloud-server-8387cd8ae35a0ad94a49a27ad8622bb7b8ed2b06.tar.gz nextcloud-server-8387cd8ae35a0ad94a49a27ad8622bb7b8ed2b06.zip |
Add option to change email settings in admin section
Fix issue #7166
Diffstat (limited to 'settings/routes.php')
-rw-r--r-- | settings/routes.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/settings/routes.php b/settings/routes.php index 60f9d8e1001..aa16ad491f8 100644 --- a/settings/routes.php +++ b/settings/routes.php @@ -70,6 +70,9 @@ $this->create('settings_ajax_getlog', '/settings/ajax/getlog.php') ->actionInclude('settings/ajax/getlog.php'); $this->create('settings_ajax_setloglevel', '/settings/ajax/setloglevel.php') ->actionInclude('settings/ajax/setloglevel.php'); +$this->create('settings_mail_settings', '/settings/admin/mailsettings') + ->post() + ->action('OC\Settings\Admin\Controller', 'setMailSettings'); $this->create('settings_ajax_setsecurity', '/settings/ajax/setsecurity.php') ->actionInclude('settings/ajax/setsecurity.php'); $this->create('isadmin', '/settings/js/isadmin.js') |