diff options
author | kondou <kondou@ts.unde.re> | 2013-09-13 17:07:23 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-09-13 17:07:23 +0200 |
commit | 18da2f9cf76815faeaa6ae162fa8af2d80aaeb3e (patch) | |
tree | 79820ce19c0177d2c1fd819550a593ca80b22179 /settings/routes.php | |
parent | 306a8681c5a4699d2f9e0375922000c85501def3 (diff) | |
download | nextcloud-server-18da2f9cf76815faeaa6ae162fa8af2d80aaeb3e.tar.gz nextcloud-server-18da2f9cf76815faeaa6ae162fa8af2d80aaeb3e.zip |
Improve changepassword route naming
Diffstat (limited to 'settings/routes.php')
-rw-r--r-- | settings/routes.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/routes.php b/settings/routes.php index 6778a2ab828..60f9d8e1001 100644 --- a/settings/routes.php +++ b/settings/routes.php @@ -37,13 +37,13 @@ $this->create('settings_ajax_togglesubadmins', '/settings/ajax/togglesubadmins.p ->actionInclude('settings/ajax/togglesubadmins.php'); $this->create('settings_ajax_removegroup', '/settings/ajax/removegroup.php') ->actionInclude('settings/ajax/removegroup.php'); -$this->create('settings_ajax_changepassword', '/settings/users/changepassword') +$this->create('settings_users_changepassword', '/settings/users/changepassword') ->post() ->action('OC\Settings\ChangePassword\Controller', 'changeUserPassword'); $this->create('settings_ajax_changedisplayname', '/settings/ajax/changedisplayname.php') ->actionInclude('settings/ajax/changedisplayname.php'); // personal -$this->create('settings_ajax_changepersonalpassword', '/settings/personal/changepassword') +$this->create('settings_personal_changepassword', '/settings/personal/changepassword') ->post() ->action('OC\Settings\ChangePassword\Controller', 'changePersonalPassword'); $this->create('settings_ajax_lostpassword', '/settings/ajax/lostpassword.php') |