mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-01 01:18:10 +02:00
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.
10 lines
285 B
TypeScript
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);
|
|
}
|