From aa8f13a763e2c0ec1311711972b9f240e30c9922 Mon Sep 17 00:00:00 2001 From: bolyachevets Date: Wed, 3 Jan 2024 17:15:01 -0800 Subject: [PATCH] update board names --- apps/application-status/enums/boardName.ts | 8 ++++---- apps/release-notes/composable/classifyRelease.ts | 5 +++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/apps/application-status/enums/boardName.ts b/apps/application-status/enums/boardName.ts index 82629f9..46b07de 100644 --- a/apps/application-status/enums/boardName.ts +++ b/apps/application-status/enums/boardName.ts @@ -1,8 +1,8 @@ enum BoardName { - ENTITIES = 'entities-team-space-2023', - NAMETEAMSPACE = 'names-team-board', - ASSETS = 'Assets Team Space', - RELATIONSHIPS = 'Relationships Team Space', + ENTITIES = 'Entities Team Space - new', + NAMETEAMSPACE = 'Names-Team-Board (New)', + ASSETS = 'Assets Team Space (New)', + RELATIONSHIPS = 'Relationships Team Space (New)', BTR = 'Beneficial Ownership 2023', } diff --git a/apps/release-notes/composable/classifyRelease.ts b/apps/release-notes/composable/classifyRelease.ts index 3b5e10a..871163f 100644 --- a/apps/release-notes/composable/classifyRelease.ts +++ b/apps/release-notes/composable/classifyRelease.ts @@ -21,10 +21,11 @@ export async function classifyReleases ( endCursor: '' } if (team === 'ENTITIES') { - myGhIds = await getBoard('entities-team-space-2023') + myGhIds = await getBoard('Entities Team Space - new') } else if (team === 'NAMETEAMSPACE') { - myGhIds = await getBoard('names-team-board') + myGhIds = await getBoard('Names-Team-Board (New)') } + const response = await getReport(myGhIds, startCursor, endCursor, state) items = response.nodes pageInfo = response.pageInfo