feat: add roles property to CurrentUser interface

resolves #4517
pull/4526/head
mehmet-erim 5 years ago
parent c401ce5301
commit 5c28936eaa

@ -62,10 +62,11 @@ export namespace ApplicationConfiguration {
}
export interface CurrentUser {
isAuthenticated: boolean;
email: string;
id: string;
isAuthenticated: boolean;
roles: string[];
tenantId: string;
userName: string;
email: string;
}
}

Loading…
Cancel
Save