forked from github/plane
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",
|
||||
};
|
||||
|
||||
export const STATE_GROUP = ["Backlog", "Unstarted", "Started", "Completed", "Cancelled"];
|
||||
|
||||
export const PRIORITIES: TIssuePriorities[] = ["urgent", "high", "medium", "low", "none"];
|
||||
|
||||
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;
|
||||
target_date?: string[] | null;
|
||||
estimate_point?: string[] | null;
|
||||
projects?: string[] | null;
|
||||
project?: string[] | null;
|
||||
}
|
||||
|
||||
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;
|
||||
target_date: string[] | null;
|
||||
type: "active" | "backlog" | null;
|
||||
projects: string[] | null;
|
||||
project: string[] | null;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user