mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
chore: workspace issues types and constants
This commit is contained in:
parent
1283d7597d
commit
5153744a35
@ -21,6 +21,8 @@ export const GROUP_CHOICES = {
|
|||||||
cancelled: "Cancelled",
|
cancelled: "Cancelled",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const STATE_GROUP = ["Backlog", "Unstarted", "Started", "Completed", "Cancelled"];
|
||||||
|
|
||||||
export const PRIORITIES: TIssuePriorities[] = ["urgent", "high", "medium", "low", "none"];
|
export const PRIORITIES: TIssuePriorities[] = ["urgent", "high", "medium", "low", "none"];
|
||||||
|
|
||||||
export const MONTHS = [
|
export const MONTHS = [
|
||||||
|
2
web/types/view-props.d.ts
vendored
2
web/types/view-props.d.ts
vendored
@ -39,7 +39,7 @@ export interface IIssueFilterOptions {
|
|||||||
subscriber?: string[] | null;
|
subscriber?: string[] | null;
|
||||||
target_date?: string[] | null;
|
target_date?: string[] | null;
|
||||||
estimate_point?: string[] | null;
|
estimate_point?: string[] | null;
|
||||||
projects?: string[] | null;
|
project?: string[] | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IIssueDisplayFilterOptions {
|
export interface IIssueDisplayFilterOptions {
|
||||||
|
2
web/types/views.d.ts
vendored
2
web/types/views.d.ts
vendored
@ -30,5 +30,5 @@ export interface IQuery {
|
|||||||
start_date: string[] | null;
|
start_date: string[] | null;
|
||||||
target_date: string[] | null;
|
target_date: string[] | null;
|
||||||
type: "active" | "backlog" | null;
|
type: "active" | "backlog" | null;
|
||||||
projects: string[] | null;
|
project: string[] | null;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user