chore: cycles endpoint updated and code refactor (#1135)
* chore: cycles endpoint updated and code refactor * chore: incomplete cycle endpoint updated * chore: code refactor
This commit is contained in:
parent
4ce0ac6ea1
commit
394f0bf555
15 changed files with 226 additions and 462 deletions
|
|
@ -83,8 +83,11 @@ export const CYCLE_ISSUES_WITH_PARAMS = (cycleId: string, params?: any) => {
|
|||
return `CYCLE_ISSUES_WITH_PARAMS_${cycleId.toUpperCase()}_${paramsKey.toUpperCase()}`;
|
||||
};
|
||||
export const CYCLE_DETAILS = (cycleId: string) => `CYCLE_DETAILS_${cycleId.toUpperCase()}`;
|
||||
export const CYCLE_CURRENT_AND_UPCOMING_LIST = (projectId: string) =>
|
||||
`CYCLE_CURRENT_AND_UPCOMING_LIST_${projectId.toUpperCase()}`;
|
||||
|
||||
export const CYCLE_CURRENT_LIST = (projectId: string) =>
|
||||
`CYCLE_CURRENT_LIST${projectId.toUpperCase()}`;
|
||||
export const CYCLE_UPCOMING_LIST = (projectId: string) =>
|
||||
`CYCLE_UPCOMING_LIST${projectId.toUpperCase()}`;
|
||||
export const CYCLE_DRAFT_LIST = (projectId: string) =>
|
||||
`CYCLE_DRAFT_LIST_${projectId.toUpperCase()}`;
|
||||
export const CYCLE_COMPLETE_LIST = (projectId: string) =>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue