- Nella Lavagna, cliccando sul nome dell'invitato, compaiono le sue informazioni sugli step rimasti, in dettaglio.

- Ogni utente puo' cosi scegliere di regalare un proprio invitato, cliccando sull'invitato, scrivendo l'username del destinatario e premendo il bottone 'Regala Invitato'.
Al destinatario gli arriverà un messaggio sul Bot Telegram che indica che gli è stato regalato un'invitato.
This commit is contained in:
Paolo Arena
2020-02-02 04:07:24 +01:00
parent 4b54a9ce52
commit 20cd0f2e52
56 changed files with 881 additions and 132 deletions

View File

@@ -289,10 +289,10 @@ export interface IImgGallery {
export interface IGallery {
_id?: string
author_username: string
title: string
directory: string
list: IImgGallery[]
author_username?: string
title?: string
directory?: string
list?: IImgGallery[]
}
export interface IColl {
@@ -337,6 +337,7 @@ export interface IParamsQuery {
startRow: number
endRow: number
filter: string
filterand: string
sortBy: any
descending: number
}
@@ -374,6 +375,11 @@ export interface ITableRec {
noshow: boolean
}
export interface IFilter {
label: string
value: string
}
export interface IDataPass {
id: string
table: string

View File

@@ -30,6 +30,15 @@ export interface IPaymentType {
label: string
}
export interface IDashboard {
myself?: IUserFields
aportador?: IUserFields,
numpeople_aportador?: number
downline: any[],
downnotreg: any[],
downbyuser: any[]
}
export interface ICalcStat {
numinvitati?: number
numinvitati_attivi?: number
@@ -45,6 +54,7 @@ export interface IUserFields {
ipaddr?: string
perm?: number
verified_email?: boolean
aportador_solidario?: string
date_temp_reg?: Date
made_gift?: boolean
tokens?: IToken[]
@@ -52,6 +62,7 @@ export interface IUserFields {
profile?: IUserProfile
downline?: IUserFields[]
calcstat?: ICalcStat
dashboard?: IDashboard
}
/*
@@ -84,4 +95,5 @@ export interface IUserState {
usersList?: IUserFields[]
permissionsList?: IPerm[]
countusers?: number
lastparamquery?: any
}