Circuit table...
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { IAction } from '@src/model/Projects'
|
||||
import { IMyGroup, IPaymentType } from '@src/model/UserStore'
|
||||
import { IFriends, IMyGroup, IPaymentType } from '@src/model/UserStore'
|
||||
import {
|
||||
IDepartment, IProducer, IShareWithUs, IStorehouse,
|
||||
} from '@src/model/Products'
|
||||
@@ -498,6 +498,7 @@ export interface IFunctionality {
|
||||
ENABLE_REG_ISP?: boolean
|
||||
SHOW_NAMESURNAME?: boolean
|
||||
ENABLE_GROUPS?: boolean
|
||||
ENABLE_CIRCUITS?: boolean
|
||||
SHOW_COMPETENZE?: boolean
|
||||
ENABLE_VIEW_GROUPS?: boolean
|
||||
ENABLE_VIEW_USERS?: boolean
|
||||
@@ -888,6 +889,7 @@ export interface ICircuitList {
|
||||
inscription_date?: Date
|
||||
}
|
||||
|
||||
|
||||
export interface ICircuit {
|
||||
_id: number
|
||||
groupnameId: string
|
||||
@@ -916,5 +918,17 @@ export interface ICircuit {
|
||||
ultimo_deper?: Date
|
||||
durata_deper?: number
|
||||
img_logo?: string
|
||||
date_created?: Date
|
||||
date_updated?: Date
|
||||
admins?: IFriends[]
|
||||
createdBy?: string
|
||||
}
|
||||
|
||||
export interface IAccount {
|
||||
username: string
|
||||
circuitId: number
|
||||
name: string
|
||||
deperibile?: boolean
|
||||
importo_iniziale?: number
|
||||
saldo?: number
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { IToken } from '@model/other'
|
||||
import { ICart, IOrderCart, IShareWithUs } from '@src/model/Products'
|
||||
import { ICircuit, ICircuitList, IGallery, IImgGallery } from '@model/GlobalStore'
|
||||
import { IAccount, ICircuit, ICircuitList, IGallery, IImgGallery } from '@model/GlobalStore'
|
||||
|
||||
const enum ESexType {
|
||||
None = 0,
|
||||
@@ -100,6 +100,12 @@ export interface IUserProfile {
|
||||
asked_groups: any[]
|
||||
refused_groups: any[]
|
||||
list_usersgroup?: IFriends[]
|
||||
|
||||
asked_circuits: any[]
|
||||
refused_circuits: any[]
|
||||
listUserAccounts: IAccount[]
|
||||
manage_mycircuits?: ICircuit[]
|
||||
|
||||
}
|
||||
|
||||
export interface IPaymentType {
|
||||
|
||||
Reference in New Issue
Block a user