Skip to content

Commit 350d155

Browse files
committed
debug logs
1 parent 4a13b50 commit 350d155

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/routes/copilotOpportunityApply/create.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import _ from 'lodash';
22
import validate from 'express-validation';
3+
import Joi from 'joi';
34

45
import models from '../../models';
56
import util from '../../util';
@@ -19,6 +20,7 @@ module.exports = [
1920
validate(applyCopilotRequestValidations),
2021
async (req, res, next) => {
2122
const data = req.body;
23+
console.log(data, 'debug data');
2224
const copilotOpportunityId = _.parseInt(req.params.id);
2325
if (!util.hasPermissionByReq(PERMISSION.APPLY_COPILOT_OPPORTUNITY, req)) {
2426
const err = new Error('Unable to apply for copilot opportunity');

0 commit comments

Comments
 (0)