feat: 房间创建者管理权限——锁定房间、踢人、结束投票

This commit is contained in:
2026-02-24 21:01:24 +08:00
parent fc0a2a018b
commit 07ffe42176
11 changed files with 507 additions and 9 deletions
+3
View File
@@ -32,4 +32,7 @@ export interface RoomStatus {
likeCounts: Record<string, number>;
swipeCounts: Record<string, number>;
restaurants: Restaurant[];
creatorId: string;
locked: boolean;
users: string[];
}