Use the actual password to update the tokens
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
28794b3782
commit
210a0554a2
2 changed files with 3 additions and 3 deletions
|
@ -59,7 +59,7 @@ class CreateSessionTokenCommand extends ALoginCommand {
|
|||
);
|
||||
$this->userSession->updateTokens(
|
||||
$loginData->getUser()->getUID(),
|
||||
$loginData->getUsername()
|
||||
$loginData->getPassword()
|
||||
);
|
||||
|
||||
return $this->processNextOrFinishSuccessfully($loginData);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue