- User Profile

- DashBoard start
This commit is contained in:
Paolo Arena
2019-12-29 23:29:56 +01:00
parent cf91d45427
commit 9e5bd85328
23 changed files with 516 additions and 201 deletions

View File

@@ -8,6 +8,9 @@ const enum ESexType {
export interface IUserProfile {
img?: string
nationality?: string
intcode_cell?: string
iso2_cell?: string
cell?: string
dateofbirth?: Date
sex?: ESexType

View File

@@ -1,3 +1,4 @@
import { IUserProfile } from '@src/model/UserStore'
export interface ISignupOptions {
email?: string
@@ -9,4 +10,5 @@ export interface ISignupOptions {
repeatPassword?: string
terms?: boolean
aportador_solidario?: string
profile?: IUserProfile
}