We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c2a2957 + 9cd1576 commit 361e3d7Copy full SHA for 361e3d7
1 file changed
src/commission/service/commission.service.js
@@ -203,6 +203,7 @@ export const CommissionService = {
203
throw new CommissionNotFoundError({ commissionId });
204
}
205
206
+ /**
207
// 중복 신청 확인
208
const existingRequest = await CommissionRepository.findExistingRequest(userId, commissionId);
209
if (existingRequest) {
@@ -212,6 +213,7 @@ export const CommissionService = {
212
213
existingRequestId: existingRequest.id
214
});
215
216
+ */
217
218
// formSchema 가져오기
219
const customFields = commission.formSchema?.fields || [];
0 commit comments