fix issues

This commit is contained in:
2026-01-01 20:31:05 +01:00
parent 9005a8327c
commit 206a03ec48
267 changed files with 3632 additions and 452 deletions

View File

@@ -10,6 +10,6 @@ export interface AuthSession {
// Application port for session access/persistence (implemented by adapters).
export interface IdentitySessionPort {
getCurrentSession(): Promise<AuthSession | null>;
createSession(user: AuthenticatedUser): Promise<AuthSession>;
createSession(user: AuthenticatedUser, options?: { rememberMe?: boolean }): Promise<AuthSession>;
clearSession(): Promise<void>;
}