2023-08-11 11:48:33 +00:00
|
|
|
export interface IWorkspace {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
slug: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IProject {
|
|
|
|
id: string;
|
|
|
|
identifier: string;
|
|
|
|
name: string;
|
2023-08-16 07:45:57 +00:00
|
|
|
description: string;
|
2023-08-11 11:48:33 +00:00
|
|
|
icon: string;
|
|
|
|
cover_image: string | null;
|
|
|
|
icon_prop: string | null;
|
|
|
|
emoji: string | null;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IProjectSettings {
|
|
|
|
comments: boolean;
|
|
|
|
reactions: boolean;
|
|
|
|
votes: boolean;
|
|
|
|
views: {
|
|
|
|
list: boolean;
|
|
|
|
gantt: boolean;
|
|
|
|
kanban: boolean;
|
|
|
|
calendar: boolean;
|
|
|
|
spreadsheet: boolean;
|
|
|
|
};
|
|
|
|
}
|