The frontend was still trying to update the two in the project which won't work since they are now saved at the view level, not the project.
27 lines
648 B
TypeScript
27 lines
648 B
TypeScript
import type {IAbstract} from './IAbstract'
|
|
import type {ITask} from './ITask'
|
|
import type {IUser} from './IUser'
|
|
import type {ISubscription} from './ISubscription'
|
|
import type {IProjectView} from '@/modelTypes/IProjectView'
|
|
|
|
|
|
export interface IProject extends IAbstract {
|
|
id: number
|
|
title: string
|
|
description: string
|
|
owner: IUser
|
|
tasks: ITask[]
|
|
isArchived: boolean
|
|
hexColor: string
|
|
identifier: string
|
|
backgroundInformation: unknown | null // FIXME: improve type
|
|
isFavorite: boolean
|
|
subscription: ISubscription
|
|
position: number
|
|
backgroundBlurHash: string
|
|
parentProjectId: number
|
|
views: IProjectView[]
|
|
|
|
created: Date
|
|
updated: Date
|
|
} |