File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ export const AuditStatus = {
20
20
/** Paused: The audit is in between Rolling Triage cohorts */
21
21
Paused : "Paused" ,
22
22
Review : "Review" ,
23
+ Restricted : "Restricted" ,
23
24
Judging : "Judging" ,
24
25
PJQA : "Post-Judging QA" ,
25
26
JudgingComplete : "Judging Complete" ,
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ export interface ContestTileData {
87
87
endDate : string ;
88
88
/** Boolean indicating certification status of logged in user. Required for viewing certain contests. */
89
89
isUserCertified : boolean ;
90
- status : AuditStatus ;
90
+ status : AuditStatus | null ;
91
91
}
92
92
93
93
export interface BaseContestSchedule {
@@ -104,7 +104,7 @@ export interface BaseContestSchedule {
104
104
}
105
105
106
106
export interface ContestSchedule extends BaseContestSchedule {
107
- status : AuditStatus ;
107
+ status : AuditStatus | null ;
108
108
end : Date ;
109
109
/** The time the current cohort will pause. */
110
110
pause : Date | null ;
You can’t perform that action at this time.
0 commit comments