Cài đặt tính năng quản lí người dùng cho admin

This commit is contained in:
2026-06-13 18:24:14 +07:00
parent ea5799ffb5
commit 7b42058d77
21 changed files with 458 additions and 30 deletions
+2 -1
View File
@@ -8,12 +8,13 @@ export declare class JwtStrategy extends JwtStrategy_base {
constructor(prisma: PrismaService);
validate(payload: any): Promise<{
id: number;
name: string | null;
email: string;
passwordHash: string;
name: string | null;
avatar: string | null;
createdAt: Date;
isAdmin: boolean;
isBlocked: boolean;
}>;
}
export {};