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