We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c9032ff + a6fb195 commit 48e9f9dCopy full SHA for 48e9f9d
__tests__/__snapshots__/index.js.snap
@@ -371,6 +371,12 @@ Object {
371
"processMMSubmissions": [Function],
372
},
373
"tc": Object {
374
+ "CHALLENGE_STATUS": Object {
375
+ "ACTIVE": "Active",
376
+ "CANCELLED": "Cancelled",
377
+ "COMPLETED": "Completed",
378
+ "DRAFT": "Draft",
379
+ },
380
"COMPETITION_TRACKS": Object {
381
"DATA_SCIENCE": "Data Science",
382
"DESIGN": "Design",
src/utils/tc.js
@@ -31,6 +31,16 @@ export const OLD_SUBTRACKS = {
31
TESTING_COMPETITION: 'TESTING_COMPETITION',
32
};
33
34
+/*
35
+ * Challenge Status
36
+ */
37
+export const CHALLENGE_STATUS = {
38
+ ACTIVE: 'Active',
39
+ CANCELLED: 'Cancelled',
40
+ COMPLETED: 'Completed',
41
+ DRAFT: 'Draft',
42
+};
43
+
44
/**
45
* Review Opportunity types
46
*/
0 commit comments