feature/projects-all-the-way-down #3323

Merged
konrad merged 123 commits from feature/projects-all-the-way-down into main 2023-05-30 10:09:40 +00:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit a342ae67de - Show all commits

View File

@ -4,5 +4,5 @@ import type {IProject} from './IProject'
export interface IProjectDuplicate extends IAbstract {
projectId: number
project: IProject
parentProjectId: number
parentProjectId: IProject['id']
dpschen marked this conversation as resolved Outdated

IProject['id']

`IProject['id']`

Done.

Done.
}

View File

@ -7,6 +7,7 @@ import type {IProject} from '@/modelTypes/IProject'
export default class ProjectDuplicateModel extends AbstractModel<IProjectDuplicate> implements IProjectDuplicate {
projectId = 0
project: IProject = ProjectModel
parentProjectId = 0
constructor(data : Partial<IProjectDuplicate>) {
super()