Skip to content

Commit

Permalink
Fix values of current sprint sections (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
callms committed Aug 25, 2023
1 parent 22bed34 commit aecd937
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions index.js
@@ -1,10 +1,11 @@
const projectCurrentSprintSectionGid = {
design: "1200175269622814",
trash: "1201438237708782",
cancelled: "1203546046432495",
pending: "1201940752401910",
readyToDo: "1200175269622815",
inProgress: "1200175269622840",
toTest: "1200175269622816",
ready: "1200175269622817",
trash: "1201438237708782",
};

module.exports = {
Expand All @@ -18,12 +19,14 @@ module.exports = {
gid: "1200175269622723",
sections: projectCurrentSprintSectionGid,
sectionNames: {
[projectCurrentSprintSectionGid.design]: "Design",
[projectCurrentSprintSectionGid.trash]: "Trash",
[projectCurrentSprintSectionGid.cancelled]: "Annulé",
[projectCurrentSprintSectionGid.pending]: "Pending",
[projectCurrentSprintSectionGid.readyToDo]: "Ready to do",
[projectCurrentSprintSectionGid.inProgress]: "In Progress",
[projectCurrentSprintSectionGid.toTest]: "To Test",
[projectCurrentSprintSectionGid.ready]: "Ready",
[projectCurrentSprintSectionGid.trash]:
"Trash (ticket déclaré non complet)",
},
},
},
Expand Down

0 comments on commit aecd937

Please sign in to comment.