Skip to content

Commit

Permalink
Adding additional user parameters to user interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Sik committed Jan 29, 2016
1 parent 2346911 commit 6f4fbe4
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/ngJwtAuthInterfaces.ts
Expand Up @@ -74,9 +74,15 @@ module NgJwtAuth {

export interface IUser {
userId: any;
email: string,
firstName?: string,
lastName?: string,
email: string;
firstName?: string;
lastName?: string;
emailConfirmed?: string;
country?: string;
regionCode?: string;
avatarImgUrl?: string;
avatarImgId?: string;
timezoneIdentifier?: string;
}

export interface ICredentials {
Expand Down

0 comments on commit 6f4fbe4

Please sign in to comment.