feat: tasks jounrey

This commit is contained in:
Abdalhamid Alhamad
2024-12-11 10:27:51 +03:00
parent d539073f29
commit 749ee5457f
27 changed files with 654 additions and 3 deletions

View File

@ -1,4 +1,6 @@
import { Roles } from '../enums';
export interface IJwtPayload {
sub: string;
roles: string[];
roles: Roles[];
}