Skip to content

Commit

Permalink
feat: add roles property to CurrentUser interface
Browse files Browse the repository at this point in the history
resolves #4517
  • Loading branch information
mehmet-erim committed Jun 29, 2020
1 parent c401ce5 commit 5c28936
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

0 comments on commit 5c28936

Please sign in to comment.