feat: 支持用户管理

This commit is contained in:
richarjiang
2026-03-15 15:45:09 +08:00
parent 7628768869
commit 3c35f1982f
9 changed files with 738 additions and 82 deletions

View File

@@ -21,3 +21,19 @@ export interface LevelFormData {
export interface ReorderRequest {
orders: { id: string; sortOrder: number }[]
}
export interface User {
id: string
email: string
emailVerified: boolean
name: string | null
image: string | null
createdAt: Date
updatedAt: Date
}
export interface UserFormData {
email: string
password: string
name?: string
}