fix Registrazione data

fix linkref
fix controllo login
fix pagination CGridTableRec
This commit is contained in:
Paolo Arena
2020-01-20 01:50:21 +01:00
parent 6541a3a84e
commit 5153c143dd
33 changed files with 540 additions and 415 deletions

View File

@@ -62,6 +62,7 @@ export interface IMyPage {
content?: string
active?: boolean
inmenu?: boolean
onlyif_logged?: boolean
submenu?: boolean
l_par?: number,
l_child?: number,
@@ -186,6 +187,7 @@ export interface IListRoutes {
infooter?: boolean
submenu?: boolean
onlyAdmin?: boolean
onlyif_logged?: boolean
onlyManager?: boolean
extraclass?: string
meta?: any

View File

@@ -19,8 +19,10 @@ export interface IUserProfile {
username_telegram?: string
teleg_id?: number
teleg_checkcode?: number
my_dream?: string
paymenttypes?: IPaymentType[]
manage_telegram?: boolean
saw_zoom_presentation?: boolean
}
export interface IPaymentType {
@@ -28,6 +30,11 @@ export interface IPaymentType {
label: string
}
export interface ICalcStat {
numinvitati?: number
numinvitati_attivi?: number
}
export interface IUserFields {
_id?: string
email?: string
@@ -38,11 +45,13 @@ export interface IUserFields {
ipaddr?: string
perm?: number
verified_email?: boolean
date_temp_reg?: Date
made_gift?: boolean
tokens?: IToken[]
lasttimeonline?: Date
profile?: IUserProfile
downline?: IUserFields[]
calcstat?: ICalcStat
}
/*

View File

@@ -1,4 +1,5 @@
export * from './UserStore'
export * from './NotevoleStore'
export * from './MessageStore'
export * from './GlobalStore'
export * from './signin-option'

View File

@@ -11,5 +11,5 @@ export interface ISignupOptions {
terms?: boolean
aportador_solidario?: string
profile?: IUserProfile
already_registered: boolean
// already_registered: boolean
}