This commit is contained in:
2026-06-30 11:51:34 +07:00
parent fd08bee7ab
commit 0abf48ea2d
28 changed files with 3514 additions and 37 deletions

View File

@@ -0,0 +1,10 @@
export type StaffChatOpenDetail = {
studentRkId: number;
fullName: string;
studentCode: string;
email?: string;
};
export function openStaffChat(student: StaffChatOpenDetail) {
window.dispatchEvent(new CustomEvent<StaffChatOpenDetail>('staff-chat:open', { detail: student }));
}