fix: make session properties required in Session interface
This commit is contained in:
@@ -4,12 +4,12 @@ import { useRouter } from 'vue-router';
|
||||
|
||||
export interface Session {
|
||||
session_id: string;
|
||||
display_name?: string | null;
|
||||
updated_at?: string;
|
||||
platform_id?: string;
|
||||
creator?: string;
|
||||
is_group?: number;
|
||||
created_at?: string;
|
||||
display_name: string | null;
|
||||
updated_at: string;
|
||||
platform_id: string;
|
||||
creator: string;
|
||||
is_group: number;
|
||||
created_at: string;
|
||||
}
|
||||
|
||||
export function useSessions(chatboxMode: boolean = false) {
|
||||
|
||||
Reference in New Issue
Block a user