Skip to content

Commit

Permalink
fix(authentication): correct mechanism type
Browse files Browse the repository at this point in the history
  • Loading branch information
KennethTrecy committed Sep 13, 2023
1 parent d374a21 commit 1d28fd3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Controllers/LoginController.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function customLoginAction(): ResponseInterface {
"token" => [
"data" => $token->raw_token,
"expiration" => [
"type" => "maintainance",
"type" => "maintenance",
"data" => YEAR
]
]
Expand Down
2 changes: 1 addition & 1 deletion app/Controllers/RegisterController.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function customRegisterAction(): ResponseInterface {
"token" => [
"data" => $token->raw_token,
"expiration" => [
"type" => "maintainance",
"type" => "maintenance",
"data" => YEAR
]
]
Expand Down

0 comments on commit 1d28fd3

Please sign in to comment.