Skip to content
This repository has been archived by the owner on May 7, 2021. It is now read-only.

Commit

Permalink
fix(profile): make profile match data model
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuir authored and joshuawilson committed Mar 17, 2017
1 parent ebd88ce commit 949bffe
Showing 1 changed file with 6 additions and 14 deletions.
20 changes: 6 additions & 14 deletions src/app/user/profile.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,10 @@
// import { Email } from './email';

export class Profile {
fullName: string;
imageURL: string;
username: string;
bio?: string;
url?: string;
provider?: string;
email?: string;
emails?: string[];
primaryEmail?: string;
notificationEmail?: string;
publicEmail?: string;
primaryEmailPrivate?: boolean;
emailPreference?: string;
notificationMethods?: string[];
fullName: string;
imageURL: string;
username: string;
bio?: string;
url?: string;
email?: string;
}

0 comments on commit 949bffe

Please sign in to comment.