LocChat/server/dto/jwt_body.dto.ts
Joseph Ditton 84b45cd6b1 adds roles
2021-12-01 20:18:26 -07:00

7 lines
126 B
TypeScript

import { RoleKey } from 'server/entities/role.entity';
export interface JwtBodyDto {
userId: number;
roles: RoleKey[];
}