This commit is contained in:
2026-06-28 20:32:52 +03:30
parent 7a5b3f0bea
commit bf35179d55
45 changed files with 1555 additions and 46 deletions
@@ -0,0 +1,6 @@
import { UserRole } from '../../users/enums/user-role.enum';
export interface JwtPayload {
sub: string;
role: UserRole;
}