Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-02-26 17:41:07 +0400
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-02-26 17:41:07 +0400
commitd9a153dbe91a775be533869b4d80ddaa33609ca8 (patch)
tree6096cf0653a95d9ac941cbd0f4dffc5bf080bd2d /settings/routes.php
parent84eea47991d33922345e4fb15f7e74638e2a7ccc (diff)
parent9847912257de1910f99879caac8ea925fb85caed (diff)
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.php3
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');