Skip to content

Commit 9b7b337

Browse files
authored
Merge pull request #827 from topcoder-platform/pm-1468
fix(PM-1468): make notes mandatory
2 parents c486a08 + 99220ae commit 9b7b337

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ workflows:
149149
context : org-global
150150
filters:
151151
branches:
152-
only: ['develop', 'migration-setup', 'pm-1378']
152+
only: ['develop', 'migration-setup', 'pm-1468']
153153
- deployProd:
154154
context : org-global
155155
filters:

src/routes/copilotOpportunityApply/create.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { createEvent } from '../../services/busApi';
1111

1212
const applyCopilotRequestValidations = {
1313
body: Joi.object().keys({
14-
notes: Joi.string().optional(),
14+
notes: Joi.string().required(),
1515
}),
1616
};
1717

0 commit comments

Comments
 (0)