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.
2 parents 4eadcae + 4d847d9 commit 59b6584Copy full SHA for 59b6584
.circleci/config.yml
@@ -74,6 +74,7 @@ workflows:
74
branches:
75
only:
76
- develop
77
+ - pm-2660
78
79
80
- 'build-prod':
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