src/auth/interfaces/jwt-user.interface.ts
Properties |
|
| _id |
_id:
|
Type : string
|
| authStrategy |
authStrategy:
|
Type : string
|
| Optional |
| currentGroups |
currentGroups:
|
Type : string[]
|
email:
|
Type : string
|
| username |
username:
|
Type : string
|
export interface JWTUser {
_id: string;
username: string;
email: string;
currentGroups: string[];
authStrategy?: string;
}