diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-01-28 14:09:11 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-01-28 14:09:11 +0100 |
commit | e0f2ed2757b698448d49fa3e73340ce9ced25e7a (patch) | |
tree | a786746e555089386efae118277c031f7524be0a /settings/routes.php | |
parent | 022a7b13b828fd1ffb4beb7f63cca45bf4ffff1e (diff) | |
download | nextcloud-server-e0f2ed2757b698448d49fa3e73340ce9ced25e7a.tar.gz nextcloud-server-e0f2ed2757b698448d49fa3e73340ce9ced25e7a.zip |
interface and API to change display names
Diffstat (limited to 'settings/routes.php')
-rw-r--r-- | settings/routes.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/settings/routes.php b/settings/routes.php index 9b5bf809230..c9156f9a115 100644 --- a/settings/routes.php +++ b/settings/routes.php @@ -39,6 +39,8 @@ $this->create('settings_ajax_removegroup', '/settings/ajax/removegroup.php') ->actionInclude('settings/ajax/removegroup.php'); $this->create('settings_ajax_changepassword', '/settings/ajax/changepassword.php') ->actionInclude('settings/ajax/changepassword.php'); +$this->create('settings_ajax_changedisplayname', '/settings/ajax/changedisplayname.php')
+->actionInclude('settings/ajax/changedisplayname.php'); // personel $this->create('settings_ajax_lostpassword', '/settings/ajax/lostpassword.php') ->actionInclude('settings/ajax/lostpassword.php'); |