Browse Source

prefill userid for login after password reset

Signed-off-by: Robin Appelman <robin@icewind.nl>
tags/v14.0.0beta1
Robin Appelman 6 years ago
parent
commit
8ed50d4b63
No account linked to committer's email address

+ 4
- 3
core/Controller/LostController.php View File

@@ -206,10 +206,11 @@ class LostController extends Controller {
}

/**
* @param array $data
* @return array
*/
private function success() {
return array('status'=>'success');
private function success($data = []) {
return array_merge($data, ['status'=>'success']);
}

/**
@@ -282,7 +283,7 @@ class LostController extends Controller {
return $this->error($e->getMessage());
}

return $this->success();
return $this->success(['user' => $userId]);
}

/**

+ 3
- 7
core/js/lostpassword.js View File

@@ -162,7 +162,7 @@ OC.Lostpassword = {
resetDone : function(result){
var resetErrorMsg;
if (result && result.status === 'success'){
OC.Lostpassword.redirect();
OC.Lostpassword.redirect('/login?user=' + result.user);
} else {
if (result && result.msg){
resetErrorMsg = result.msg;
@@ -175,12 +175,8 @@ OC.Lostpassword = {
}
},

redirect : function(msg){
if(OC.webroot !== '') {
window.location = OC.webroot;
} else {
window.location = '/';
}
redirect : function(url){
window.location = OC.generateUrl(url);
},

resetError : function(msg){

+ 1
- 1
tests/Core/Controller/LostControllerTest.php View File

@@ -571,7 +571,7 @@ class LostControllerTest extends \Test\TestCase {
)->willReturn('12345:TheOnlyAndOnlyOneTokenToResetThePassword');

$response = $this->lostController->setPassword('TheOnlyAndOnlyOneTokenToResetThePassword', 'ValidTokenUser', 'NewPassword', true);
$expectedResponse = array('status' => 'success');
$expectedResponse = array('user' => 'ValidTokenUser', 'status' => 'success');
$this->assertSame($expectedResponse, $response);
}


Loading…
Cancel
Save