diff options
author | kondou <kondou@ts.unde.re> | 2013-09-06 08:05:07 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-09-06 08:05:07 +0200 |
commit | a21376480df10fdb96685d0eb2e663d494aed16f (patch) | |
tree | 942dd1b8d9928828337d982e051b5c7e9e746e21 /settings/routes.php | |
parent | ea6e74ca9546ca95b3a6372c6106cd8ab2ea2ee9 (diff) | |
download | nextcloud-server-a21376480df10fdb96685d0eb2e663d494aed16f.tar.gz nextcloud-server-a21376480df10fdb96685d0eb2e663d494aed16f.zip |
Split personal and user-mgmt password change logic
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 73ee70d1d5c..af1c70ea44d 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_changepersonalpassword', '/settings/ajax/changepersonalpassword.php') + ->actionInclude('settings/ajax/changepersonalpassword.php'); $this->create('settings_ajax_changedisplayname', '/settings/ajax/changedisplayname.php') ->actionInclude('settings/ajax/changedisplayname.php'); // personel |