@@ -49,6 +49,9 @@ public function getStatusAction(Request $request): Access
49
49
'icpc_id ' ,
50
50
'name ' ,
51
51
'formal_name ' ,
52
+ // DOMjudge specific properties:
53
+ 'affilid ' ,
54
+ 'shortname ' ,
52
55
];
53
56
54
57
// Add country data to organizations if supported
@@ -65,6 +68,9 @@ public function getStatusAction(Request $request): Access
65
68
'time ' ,
66
69
'contest_time ' ,
67
70
'entry_point ' ,
71
+ // DOMjudge specific properties:
72
+ 'submitid ' ,
73
+ 'import_error ' ,
68
74
];
69
75
70
76
// Add files to submissions if allowed
@@ -106,6 +112,14 @@ public function getStatusAction(Request $request): Access
106
112
'scoreboard_thaw_time ' ,
107
113
'scoreboard_type ' ,
108
114
'penalty_time ' ,
115
+ // DOMjudge specific properties:
116
+ 'cid ' ,
117
+ 'short_name ' ,
118
+ 'end_time ' ,
119
+ 'allow_submit ' ,
120
+ 'runtime_as_score_tiebreaker ' ,
121
+ 'warning_message ' ,
122
+ 'problemset ' ,
109
123
],
110
124
),
111
125
new AccessEndpoint (
@@ -127,6 +141,10 @@ public function getStatusAction(Request $request): Access
127
141
'extensions ' ,
128
142
'compiler ' ,
129
143
'runner ' ,
144
+ // DOMjudge specific properties:
145
+ 'allow_judge ' ,
146
+ 'time_factor ' ,
147
+ 'filter_compiler_files ' ,
130
148
],
131
149
),
132
150
new AccessEndpoint (
@@ -141,6 +159,8 @@ public function getStatusAction(Request $request): Access
141
159
'time_limit ' ,
142
160
'test_data_count ' ,
143
161
'statement ' ,
162
+ // DOMjudge specific properties:
163
+ 'probid ' ,
144
164
],
145
165
),
146
166
new AccessEndpoint (
@@ -150,6 +170,11 @@ public function getStatusAction(Request $request): Access
150
170
'icpc_id ' ,
151
171
'name ' ,
152
172
'hidden ' ,
173
+ // DOMjudge specific properties:
174
+ 'categoryid ' ,
175
+ 'sortorder ' ,
176
+ 'color ' ,
177
+ 'allow_self_registration ' ,
153
178
],
154
179
),
155
180
new AccessEndpoint (
@@ -169,6 +194,11 @@ public function getStatusAction(Request $request): Access
169
194
'hidden ' ,
170
195
'location ' ,
171
196
'photo ' ,
197
+ // DOMjudge specific properties:
198
+ 'teamid ' ,
199
+ 'affiliation ' ,
200
+ 'nationality ' ,
201
+ 'public_description ' ,
172
202
]
173
203
),
174
204
new AccessEndpoint (
@@ -180,6 +210,16 @@ public function getStatusAction(Request $request): Access
180
210
'type ' ,
181
211
'ip ' ,
182
212
'team_id ' ,
213
+ // DOMjudge specific properties:
214
+ 'first_login_time ' ,
215
+ 'last_login_time ' ,
216
+ 'last_api_login_time ' ,
217
+ 'team ' ,
218
+ 'roles ' ,
219
+ 'userid ' ,
220
+ 'email ' ,
221
+ 'last_ip ' ,
222
+ 'enabled ' ,
183
223
]
184
224
),
185
225
new AccessEndpoint (
@@ -208,6 +248,8 @@ public function getStatusAction(Request $request): Access
208
248
'end_time ' ,
209
249
'end_contest_time ' ,
210
250
'max_run_time ' ,
251
+ // DOMjudge specific properties:
252
+ 'valid ' ,
211
253
],
212
254
),
213
255
new AccessEndpoint (
@@ -233,6 +275,9 @@ public function getStatusAction(Request $request): Access
233
275
'text ' ,
234
276
'time ' ,
235
277
'contest_time ' ,
278
+ // DOMjudge specific properties:
279
+ 'clarid ' ,
280
+ 'answered ' ,
236
281
],
237
282
),
238
283
new AccessEndpoint (
0 commit comments