File tree 3 files changed +17
-1
lines changed
3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -371,6 +371,12 @@ Object {
371
371
" processMMSubmissions" : [Function ],
372
372
},
373
373
" tc" : Object {
374
+ " CHALLENGE_STATUS" : Object {
375
+ " ACTIVE" : " Active" ,
376
+ " CANCELLED" : " Cancelled" ,
377
+ " COMPLETED" : " Completed" ,
378
+ " DRAFT" : " Draft" ,
379
+ },
374
380
" COMPETITION_TRACKS" : Object {
375
381
" DATA_SCIENCE" : " Data Science" ,
376
382
" DESIGN" : " Design" ,
Original file line number Diff line number Diff line change 31
31
"lint:js" : " ./node_modules/.bin/eslint --ext .js,.jsx ." ,
32
32
"test" : " npm run lint && npm run jest"
33
33
},
34
- "version" : " 1.0.6 " ,
34
+ "version" : " 1.0.7 " ,
35
35
"dependencies" : {
36
36
"auth0-js" : " ^6.8.4" ,
37
37
"config" : " ^3.2.0" ,
Original file line number Diff line number Diff line change @@ -31,6 +31,16 @@ export const OLD_SUBTRACKS = {
31
31
TESTING_COMPETITION : 'TESTING_COMPETITION' ,
32
32
} ;
33
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
+
34
44
/**
35
45
* Review Opportunity types
36
46
*/
You can’t perform that action at this time.
0 commit comments