* chore: paginated the issues in space app * chore: storing query using filters * chore: added filters for priority * chore: issue view model save function * chore: votes and reactions added in issues endpoint * chore: added filters in the public endpoint * chore: issue detail endpoint * chore: added labels, modules and assignees * refactor existing project publish in space app * fix clear all filters in space App * chore: removed the extra serialier * remove optional chaining and fallback to an empty array --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
27 lines
742 B
TypeScript
27 lines
742 B
TypeScript
export const ALL_ISSUES = "All Issues";
|
|
|
|
export enum EIssueGroupByToServerOptions {
|
|
"state" = "state_id",
|
|
"priority" = "priority",
|
|
"labels" = "labels__id",
|
|
"state_detail.group" = "state__group",
|
|
"assignees" = "assignees__id",
|
|
"cycle" = "cycle_id",
|
|
"module" = "issue_module__module_id",
|
|
"target_date" = "target_date",
|
|
"project" = "project_id",
|
|
"created_by" = "created_by",
|
|
}
|
|
|
|
export enum EServerGroupByToFilterOptions {
|
|
"state_id" = "state",
|
|
"priority" = "priority",
|
|
"labels__id" = "labels",
|
|
"state__group" = "state_group",
|
|
"assignees__id" = "assignees",
|
|
"cycle_id" = "cycle",
|
|
"issue_module__module_id" = "module",
|
|
"target_date" = "target_date",
|
|
"project_id" = "project",
|
|
"created_by" = "created_by",
|
|
}
|