@@ -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
@@ -107,6 +113,14 @@ public function getStatusAction(Request $request): Access
107
113
'scoreboard_type ' ,
108
114
'penalty_time ' ,
109
115
'banner ' ,
116
+ // DOMjudge specific properties:
117
+ 'cid ' ,
118
+ 'short_name ' ,
119
+ 'end_time ' ,
120
+ 'allow_submit ' ,
121
+ 'runtime_as_score_tiebreaker ' ,
122
+ 'warning_message ' ,
123
+ 'problemset ' ,
110
124
],
111
125
),
112
126
new AccessEndpoint (
@@ -128,6 +142,10 @@ public function getStatusAction(Request $request): Access
128
142
'extensions ' ,
129
143
'compiler ' ,
130
144
'runner ' ,
145
+ // DOMjudge specific properties:
146
+ 'allow_judge ' ,
147
+ 'time_factor ' ,
148
+ 'filter_compiler_files ' ,
131
149
],
132
150
),
133
151
new AccessEndpoint (
@@ -142,6 +160,8 @@ public function getStatusAction(Request $request): Access
142
160
'time_limit ' ,
143
161
'test_data_count ' ,
144
162
'statement ' ,
163
+ // DOMjudge specific properties:
164
+ 'probid ' ,
145
165
],
146
166
),
147
167
new AccessEndpoint (
@@ -151,6 +171,11 @@ public function getStatusAction(Request $request): Access
151
171
'icpc_id ' ,
152
172
'name ' ,
153
173
'hidden ' ,
174
+ // DOMjudge specific properties:
175
+ 'categoryid ' ,
176
+ 'sortorder ' ,
177
+ 'color ' ,
178
+ 'allow_self_registration ' ,
154
179
],
155
180
),
156
181
new AccessEndpoint (
@@ -170,6 +195,11 @@ public function getStatusAction(Request $request): Access
170
195
'hidden ' ,
171
196
'location ' ,
172
197
'photo ' ,
198
+ // DOMjudge specific properties:
199
+ 'teamid ' ,
200
+ 'affiliation ' ,
201
+ 'nationality ' ,
202
+ 'public_description ' ,
173
203
]
174
204
),
175
205
new AccessEndpoint (
@@ -181,6 +211,16 @@ public function getStatusAction(Request $request): Access
181
211
'type ' ,
182
212
'ip ' ,
183
213
'team_id ' ,
214
+ // DOMjudge specific properties:
215
+ 'first_login_time ' ,
216
+ 'last_login_time ' ,
217
+ 'last_api_login_time ' ,
218
+ 'team ' ,
219
+ 'roles ' ,
220
+ 'userid ' ,
221
+ 'email ' ,
222
+ 'last_ip ' ,
223
+ 'enabled ' ,
184
224
]
185
225
),
186
226
new AccessEndpoint (
@@ -209,6 +249,8 @@ public function getStatusAction(Request $request): Access
209
249
'end_time ' ,
210
250
'end_contest_time ' ,
211
251
'max_run_time ' ,
252
+ // DOMjudge specific properties:
253
+ 'valid ' ,
212
254
],
213
255
),
214
256
new AccessEndpoint (
@@ -234,6 +276,9 @@ public function getStatusAction(Request $request): Access
234
276
'text ' ,
235
277
'time ' ,
236
278
'contest_time ' ,
279
+ // DOMjudge specific properties:
280
+ 'clarid ' ,
281
+ 'answered ' ,
237
282
],
238
283
),
239
284
new AccessEndpoint (
0 commit comments