We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eadcae commit 3afd501Copy full SHA for 3afd501
src/api/appeal/appeal.service.ts
@@ -267,6 +267,11 @@ export class AppealService {
267
);
268
}
269
270
+ // Check if the appeal phase is open while updating appeals
271
+ if (!isPrivileged && challengeId) {
272
+ await this.challengeApiService.validateAppealSubmission(challengeId);
273
+ }
274
+
275
if (!isPrivileged) {
276
await this.ensureChallengeAllowsAppealChange(challengeId, {
277
logContext: 'updateAppeal',
0 commit comments