實作管理者用戶管理、邀請註冊功能

This commit is contained in:
2025-09-09 15:15:26 +08:00
parent 32b19e9a0f
commit 46bd9db2e3
11 changed files with 1297 additions and 214 deletions

View File

@@ -14,7 +14,7 @@ export interface User {
join_date: string;
total_likes: number;
total_views: number;
is_active: boolean;
status: 'active' | 'inactive' | 'invited';
last_login?: string;
phone?: string;
location?: string;
@@ -34,7 +34,7 @@ export interface UserProfile {
join_date: string;
total_likes: number;
total_views: number;
is_active: boolean;
status: 'active' | 'inactive' | 'invited';
last_login?: string;
phone?: string;
location?: string;