Move Project

This commit is contained in:
Paolo Arena
2019-04-27 20:12:41 +02:00
parent d2cae3cc32
commit 2ba3cd6b3f
11 changed files with 217 additions and 26 deletions

View File

@@ -2,6 +2,11 @@ import objectId from '@src/js/objectId'
import { UserStore } from '@store'
import { tools } from '@src/store/Modules/tools'
export interface IAction {
type: number
_id: any
}
export interface IProject {
_id?: any,
userId?: string
@@ -43,6 +48,7 @@ export interface IProjectsState {
projects: IProject[]
insidePending: boolean
visuLastCompleted: number
action: IAction
}
export const Privacy = {