feat: avatar column in admin users table

This commit is contained in:
Kirill
2026-05-21 20:52:43 +05:00
parent d1e4cc67aa
commit 2751332356
3 changed files with 21 additions and 1 deletions
+3
View File
@@ -2,6 +2,9 @@ export type AdminUser = {
id: string
email: string
name: string | null
avatar?: string | null
avatarType?: string | null
avatarStyle?: string | null
createdAt: string
updatedAt: string
}