File tree Expand file tree Collapse file tree 1 file changed +33
-3
lines changed
webapp/src/Controller/API Expand file tree Collapse file tree 1 file changed +33
-3
lines changed Original file line number Diff line number Diff line change @@ -100,8 +100,11 @@ public function getStatusAction(Request $request): Access
100
100
'name ' ,
101
101
'formal_name ' ,
102
102
'start_time ' ,
103
+ 'countdown_pause_time ' ,
103
104
'duration ' ,
104
105
'scoreboard_freeze_duration ' ,
106
+ 'scoreboard_thaw_time ' ,
107
+ 'scoreboard_type ' ,
105
108
'penalty_time ' ,
106
109
],
107
110
),
@@ -122,9 +125,8 @@ public function getStatusAction(Request $request): Access
122
125
'entry_point_required ' ,
123
126
'entry_point_name ' ,
124
127
'extensions ' ,
125
- // TODO: we don't support these yet
126
- // 'compiler.command',
127
- // 'runner.command',
128
+ 'compiler ' ,
129
+ 'runner ' ,
128
130
],
129
131
),
130
132
new AccessEndpoint (
@@ -160,9 +162,24 @@ public function getStatusAction(Request $request): Access
160
162
'id ' ,
161
163
'icpc_id ' ,
162
164
'name ' ,
165
+ 'label ' ,
163
166
'display_name ' ,
164
167
'organization_id ' ,
165
168
'group_ids ' ,
169
+ 'hidden ' ,
170
+ 'location ' ,
171
+ 'photo ' ,
172
+ ]
173
+ ),
174
+ new AccessEndpoint (
175
+ type: 'accounts ' ,
176
+ properties: [
177
+ 'id ' ,
178
+ 'username ' ,
179
+ 'name ' ,
180
+ 'type ' ,
181
+ 'ip ' ,
182
+ 'team_id ' ,
166
183
]
167
184
),
168
185
new AccessEndpoint (
@@ -205,6 +222,19 @@ public function getStatusAction(Request $request): Access
205
222
'run_time ' ,
206
223
],
207
224
),
225
+ new AccessEndpoint (
226
+ type: 'clarifications ' ,
227
+ properties: [
228
+ 'id ' ,
229
+ 'from_team_id ' ,
230
+ 'to_team_id ' ,
231
+ 'reply_to_id ' ,
232
+ 'problem_id ' ,
233
+ 'text ' ,
234
+ 'time ' ,
235
+ 'contest_time ' ,
236
+ ],
237
+ ),
208
238
new AccessEndpoint (
209
239
type: 'awards ' ,
210
240
properties: [
You can’t perform that action at this time.
0 commit comments