forked from github/plane
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
27 lines
557 B
TypeScript
27 lines
557 B
TypeScript
export interface IView {
|
|
id: string;
|
|
access: string;
|
|
created_at: Date;
|
|
updated_at: Date;
|
|
is_favorite: boolean;
|
|
created_by: string;
|
|
updated_by: string;
|
|
name: string;
|
|
description: string;
|
|
query: IQuery;
|
|
query_data: IQuery;
|
|
project: string;
|
|
workspace: string;
|
|
}
|
|
|
|
export interface IQuery {
|
|
assignees: string[] | null;
|
|
created_by: string[] | null;
|
|
labels: string[] | null;
|
|
priority: string[] | null;
|
|
state: string[] | null;
|
|
start_date: string[] | null;
|
|
target_date: string[] | null;
|
|
type: "active" | "backlog" | null;
|
|
}
|