diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-26 14:41:07 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-26 14:41:07 +0100 |
commit | d9a153dbe91a775be533869b4d80ddaa33609ca8 (patch) | |
tree | 6096cf0653a95d9ac941cbd0f4dffc5bf080bd2d /settings/routes.php | |
parent | 84eea47991d33922345e4fb15f7e74638e2a7ccc (diff) | |
parent | 9847912257de1910f99879caac8ea925fb85caed (diff) | |
download | nextcloud-server-d9a153dbe91a775be533869b4d80ddaa33609ca8.tar.gz nextcloud-server-d9a153dbe91a775be533869b4d80ddaa33609ca8.zip |
Merge pull request #7174 from owncloud/issue/7166
Add option to change email settings in admin section
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 895a9f5ccea..64f7122f0cf 100644 --- a/settings/routes.php +++ b/settings/routes.php @@ -70,5 +70,8 @@ $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'); |