Use the actual password to update the tokens

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2019-09-18 19:46:21 +02:00
parent 28794b3782
commit 210a0554a2
No known key found for this signature in database
GPG Key ID: F941078878347C0C
2 changed files with 3 additions and 3 deletions

View File

@ -59,7 +59,7 @@ class CreateSessionTokenCommand extends ALoginCommand {
);
$this->userSession->updateTokens(
$loginData->getUser()->getUID(),
$loginData->getUsername()
$loginData->getPassword()
);
return $this->processNextOrFinishSuccessfully($loginData);

View File

@ -76,7 +76,7 @@ class CreateSessionTokenCommandTest extends ALoginCommandTest {
->method('updateTokens')
->with(
$this->username,
$this->username
$this->password
);
$result = $this->cmd->process($data);
@ -109,7 +109,7 @@ class CreateSessionTokenCommandTest extends ALoginCommandTest {
->method('updateTokens')
->with(
$this->username,
$this->username
$this->password
);
$result = $this->cmd->process($data);