Skip to content
This repository was archived by the owner on Dec 17, 2024. It is now read-only.

Commit aecd937

Browse files
authored
Fix values of current sprint sections (#32)
1 parent 22bed34 commit aecd937

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

index.js

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
const projectCurrentSprintSectionGid = {
2-
design: "1200175269622814",
3-
trash: "1201438237708782",
2+
cancelled: "1203546046432495",
3+
pending: "1201940752401910",
44
readyToDo: "1200175269622815",
55
inProgress: "1200175269622840",
66
toTest: "1200175269622816",
77
ready: "1200175269622817",
8+
trash: "1201438237708782",
89
};
910

1011
module.exports = {
@@ -18,12 +19,14 @@ module.exports = {
1819
gid: "1200175269622723",
1920
sections: projectCurrentSprintSectionGid,
2021
sectionNames: {
21-
[projectCurrentSprintSectionGid.design]: "Design",
22-
[projectCurrentSprintSectionGid.trash]: "Trash",
22+
[projectCurrentSprintSectionGid.cancelled]: "Annulé",
23+
[projectCurrentSprintSectionGid.pending]: "Pending",
2324
[projectCurrentSprintSectionGid.readyToDo]: "Ready to do",
2425
[projectCurrentSprintSectionGid.inProgress]: "In Progress",
2526
[projectCurrentSprintSectionGid.toTest]: "To Test",
2627
[projectCurrentSprintSectionGid.ready]: "Ready",
28+
[projectCurrentSprintSectionGid.trash]:
29+
"Trash (ticket déclaré non complet)",
2730
},
2831
},
2932
},

0 commit comments

Comments
 (0)