Skip to content

Commit

Permalink
Add unstarted status
Browse files Browse the repository at this point in the history
  • Loading branch information
nverges committed Dec 3, 2024
1 parent ddd8ba4 commit 4c88f04
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/import_sources/pivotal/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const UNSCHEDULED = "unscheduled";
const FINISHED = "finished";
const PLANNED = "planned";
const STARTED = "started";
const UNSTARTED = "unstarted";

const PREFIX = "pivotal";

Expand All @@ -20,6 +21,12 @@ export const STATUS_OPTIONS = [
color: "#6C757D",
type: BACKLOG_TYPE,
},
{
value: UNSTARTED,
name: `${PREFIX} - ${UNSTARTED}`,
color: "#6C757D",
type: BACKLOG_TYPE,
},
{
value: PLANNED,
name: `${PREFIX} - ${PLANNED}`,
Expand Down

0 comments on commit 4c88f04

Please sign in to comment.