summaryrefslogtreecommitdiffstats
path: root/core/routes.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-06-13 16:18:21 +0200
committerMorris Jobke <hey@morrisjobke.de>2014-06-13 16:18:21 +0200
commited8b7fc1019d48741b11dd25e614677a80d0a89f (patch)
tree1eefeae96698ef432bde687ba39fe80fb4d033b3 /core/routes.php
parentebbf2283099215ca06914b0c4c62423de2ceb2e2 (diff)
downloadnextcloud-server-ed8b7fc1019d48741b11dd25e614677a80d0a89f.tar.gz
nextcloud-server-ed8b7fc1019d48741b11dd25e614677a80d0a89f.zip
complete renaming uid to userId
Diffstat (limited to 'core/routes.php')
-rw-r--r--core/routes.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/routes.php b/core/routes.php
index ce0103e3ee7..d08bd105a14 100644
--- a/core/routes.php
+++ b/core/routes.php
@@ -11,8 +11,8 @@ use OC\Core\LostPassword\Application;
$application = new Application();
$application->registerRoutes($this, array('routes' => array(
array('name' => 'lost#email', 'url' => '/lostpassword/email', 'verb' => 'POST'),
- array('name' => 'lost#resetform', 'url' => '/lostpassword/reset/form/{token}/{uid}', 'verb' => 'GET'),
- array('name' => 'lost#setPassword', 'url' => '/lostpassword/set/{token}/{uid}', 'verb' => 'POST'),
+ array('name' => 'lost#resetform', 'url' => '/lostpassword/reset/form/{token}/{userId}', 'verb' => 'GET'),
+ array('name' => 'lost#setPassword', 'url' => '/lostpassword/set/{token}/{userId}', 'verb' => 'POST'),
)
));