feat: added estimates (#721)
* feat: added estimates * chore: added estimate to issue sidebar
This commit is contained in:
parent
14dd498d08
commit
95fe4a3831
18 changed files with 1288 additions and 2 deletions
|
|
@ -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()}`;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue