feat: avatar column in admin users table
This commit is contained in:
@@ -33,6 +33,9 @@ export async function registerAdminUserRoutes(fastify) {
|
||||
id: true,
|
||||
email: true,
|
||||
displayName: true,
|
||||
avatar: true,
|
||||
avatarType: true,
|
||||
avatarStyle: true,
|
||||
createdAt: true,
|
||||
updatedAt: true,
|
||||
},
|
||||
@@ -44,6 +47,9 @@ export async function registerAdminUserRoutes(fastify) {
|
||||
id: u.id,
|
||||
email: u.email,
|
||||
displayName: u.displayName,
|
||||
avatar: u.avatar,
|
||||
avatarType: u.avatarType,
|
||||
avatarStyle: u.avatarStyle,
|
||||
createdAt: u.createdAt,
|
||||
updatedAt: u.updatedAt,
|
||||
}))
|
||||
|
||||
Reference in New Issue
Block a user