Skip to content

Commit

Permalink
Merge pull request #55 from bcgov/change-board-names
Browse files Browse the repository at this point in the history
update board names
  • Loading branch information
bolyachevets authored Jan 4, 2024
2 parents 10802bc + aa8f13a commit df3987e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions apps/application-status/enums/boardName.ts
Original file line number Diff line number Diff line change
@@ -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',
}

Expand Down
5 changes: 3 additions & 2 deletions apps/release-notes/composable/classifyRelease.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit df3987e

Please sign in to comment.