- add fields: typeproj and id_main_project
This commit is contained in:
@@ -6,6 +6,8 @@ export interface IProject {
|
||||
_id?: any,
|
||||
userId?: string
|
||||
category?: string
|
||||
typeproj?: number
|
||||
id_main_project?: string
|
||||
id_parent?: string
|
||||
descr?: string
|
||||
longdescr?: string
|
||||
@@ -31,6 +33,8 @@ export interface IProject {
|
||||
begin_test?: Date
|
||||
totalphases?: number
|
||||
actualphase?: number
|
||||
privacyread?: string
|
||||
privacywrite?: string
|
||||
}
|
||||
|
||||
export interface IProjectsState {
|
||||
@@ -39,3 +43,15 @@ export interface IProjectsState {
|
||||
insidePending: boolean
|
||||
visuLastCompleted: number
|
||||
}
|
||||
|
||||
export const Privacy = {
|
||||
all: 'all',
|
||||
friends: 'friends',
|
||||
mygroup: 'mygroup',
|
||||
onlyme: 'onlyme'
|
||||
}
|
||||
|
||||
export const TypeProj = {
|
||||
TYPE_PROJECT: 1,
|
||||
TYPE_SUBDIR: 2
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user