feat: added estimates (#721)

* feat: added estimates

* chore: added estimate to issue sidebar
This commit is contained in:
Kunal Vishwakarma 2023-04-06 15:09:24 +05:30 committed by GitHub
parent 14dd498d08
commit 95fe4a3831
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 1288 additions and 2 deletions

View file

@ -150,3 +150,9 @@ export const OTHER_PAGES_LIST = (projectId: string) =>
export const PAGE_DETAILS = (pageId: string) => `PAGE_DETAILS_${pageId.toUpperCase()}`;
export const PAGE_BLOCKS_LIST = (pageId: string) => `PAGE_BLOCK_LIST_${pageId.toUpperCase()}`;
export const PAGE_BLOCK_DETAILS = (pageId: string) => `PAGE_BLOCK_DETAILS_${pageId.toUpperCase()}`;
// estimates
export const ESTIMATES_LIST = (projectId: string) => `ESTIMATES_LIST_${projectId.toUpperCase()}`;
export const ESTIMATE_DETAILS = (estimateId: string) => `ESTIMATE_DETAILS_${estimateId.toUpperCase()}`;
export const ESTIMATE_POINTS_LIST = (estimateId: string) =>
`ESTIMATES_POINTS_LIST_${estimateId.toUpperCase()}`;