backend-app-api: review fixes for cookie auth

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2024-02-27 12:07:29 +01:00
parent d455112cbf
commit 7c8727ce05
2 changed files with 15 additions and 10 deletions
@@ -181,7 +181,7 @@ export class MockAuthService implements AuthService {
token: mockCredentials.limitedUser.token(
credentials.principal.userEntityRef,
),
expiresAt: new Date(Date.now() + 3600),
expiresAt: new Date(Date.now() + 3600_000),
};
}
}