-
Notifications
You must be signed in to change notification settings - Fork 320
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] Fix backend addteammembers api is Fixed #876
Changes from 3 commits
13fc721
5ccd84c
a1d9abf
31ebecc
eca573b
201ba97
18e9090
21caa1e
8666e9a
b27a053
06a0c7f
b327507
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
/* eslint-disable import/newline-after-import */ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [neat]please remove these un-necessary changes. |
||
/* eslint-disable no-shadow */ | ||
/* eslint-disable prefer-arrow-callback */ | ||
/* eslint-disable prefer-destructuring */ | ||
/* eslint-disable prefer-const */ | ||
/* eslint-disable consistent-return */ | ||
/* eslint-disable no-unused-vars */ | ||
/* eslint-disable prettier/prettier */ | ||
const joinUsModel = require('../../models/joinUs'); | ||
module.exports = async(req,res,next) => { | ||
try { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
/* eslint-disable import/newline-after-import */ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [neat]please remove these un-necessary changes. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @Kajol-Kumari @Kajol-Kumari If i remove those 4 line while commiting the changes it askes to change the entire file. Changing the entire file may effect other function so i added that comments. They are unnecessary. but to commit changes they are necessary other wise we have to change all those files. I hope you understand. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the problem is these lines are disabling all the linting checks and so i can't allow it to be merged. can you please raise a new pr with just those 2 required change? |
||
/* eslint-disable no-shadow */ | ||
/* eslint-disable prefer-arrow-callback */ | ||
/* eslint-disable prefer-destructuring */ | ||
/* eslint-disable prefer-const */ | ||
/* eslint-disable consistent-return */ | ||
/* eslint-disable no-unused-vars */ | ||
/* eslint-disable prettier/prettier */ | ||
const teamMemberModel = require('../../models/TeamMember'); | ||
module.exports = async(req,res,next) => { | ||
try { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you please remove these un-necessary changes?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Kajol-Kumari If i remove those 4 line while commiting the changes it askes to change the entire file.