-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
tronghieuvuong
committed
Dec 6, 2023
1 parent
74ce0b6
commit c014b77
Showing
4 changed files
with
73 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
import { Sprint } from "~/interface/interfaces"; | ||
Check failure on line 1 in apps/application-status/data/TeamsData.ts GitHub Actions / linting (20.6.1)
|
||
import BoardName from "~/enums/boardName"; | ||
Check failure on line 2 in apps/application-status/data/TeamsData.ts GitHub Actions / linting (20.6.1)
|
||
import BoardTitles from "~/enums/boardTitles"; | ||
Check failure on line 3 in apps/application-status/data/TeamsData.ts GitHub Actions / linting (20.6.1)
|
||
const sprint: Sprint = { | ||
closedIssuesCount: 0, | ||
completedPoints: 0, | ||
createdAt: "", | ||
description: "", | ||
endAt: "", | ||
id: "", | ||
name: "", | ||
startAt: "", | ||
state: "", | ||
totalPoints: 0, | ||
updatedAt: "", | ||
numberOfRelease: 0, | ||
issues: { | ||
totalCount: 0, | ||
}, | ||
}; | ||
const result = { | ||
totalReleases: 0, | ||
totalIssues: 0, | ||
totalBugs: 0, | ||
}; | ||
const teams = [ | ||
{ | ||
id: 1, | ||
title: BoardTitles.ENTITIES, | ||
board: BoardName.ENTITIES, | ||
keyWord: "enti", | ||
result, | ||
sprint, | ||
}, | ||
{ | ||
id: 2, | ||
title: BoardTitles.NAMESTEAMSPACE, | ||
board: BoardName.NAMETEAMSPACE, | ||
keyWord: "name", | ||
result, | ||
sprint, | ||
}, | ||
{ | ||
id: 3, | ||
title: BoardTitles.ASSETS, | ||
board: BoardName.ASSETS, | ||
keyWord: "assets", | ||
result, | ||
sprint, | ||
}, | ||
{ | ||
id: 4, | ||
title: BoardTitles.RELATIONSHIPS, | ||
board: BoardName.RELATIONSHIPS, | ||
keyWord: "relationships", | ||
result, | ||
sprint, | ||
}, | ||
]; | ||
|
||
export default teams |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
enum BoardTitles { | ||
ENTITIES = "ENTITIES", | ||
NAMESTEAMSPACE = "NAMES TEAM SPACE", | ||
ASSETS = "ASSETS", | ||
RELATIONSHIPS = "RELATIONSHIPS" | ||
} | ||
|
||
export default BoardTitles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters