1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-01 01:18:10 +02:00
unleash.unleash/src/lib/util/extract-user.ts
Nuno Góis fd580c9539
fix: extract username from user should not return undefined (#5061)
This fixes a return type error by changing the logic of
`extractUsernameFromUser` to never return undefined.

In the previous code, `user` could be truthy, but that doesn't mean
`email` or `username` were defined. This assumes we always fallback to
"unknown" in those scenarios.
2023-10-17 09:18:44 +01:00

10 lines
285 B
TypeScript

import { IAuthRequest, IUser } from '../server-impl';
export function extractUsernameFromUser(user: IUser): string {
return user?.email || user?.username || 'unknown';
}
export function extractUsername(req: IAuthRequest): string {
return extractUsernameFromUser(req.user);
}