fix issues
This commit is contained in:
@@ -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>;
|
||||
}
|
||||
Reference in New Issue
Block a user