Removed unused session data (#11167)

This commit is contained in:
Aiden Foxx
2022-01-19 19:35:46 +01:00
committed by GitHub
parent b96fb77cbf
commit ccd91de8c5

View File

@@ -26,12 +26,9 @@ export type AuthData = Record<string, any> | null;
export interface Session {
token: string;
expires: Date;
data: string | Record<string, unknown> | null;
share: string;
}
export type SessionData = Record<string, any> | null;
export type DirectusTokenPayload = {
id?: string;
role: string | null;