From aecd9373882b94c251c5287a8c3d1d7dc84c05bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christopher=20All=C3=A8ne?= <66381046+callms@users.noreply.github.com> Date: Fri, 25 Aug 2023 11:56:23 +0200 Subject: [PATCH] Fix values of current sprint sections (#32) --- index.js | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/index.js b/index.js index 51e2c45..3659f0a 100644 --- a/index.js +++ b/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 = { @@ -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)", }, }, },