-
Notifications
You must be signed in to change notification settings - Fork 16
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
[FEATURE] Implement "Forgot Feature" to the backend. #19 #29
base: main
Are you sure you want to change the base?
Conversation
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.
You've made your first pull request - awesome! Let's collaborate to make this project even better
If you're fixing a bug, please refer to the issue number in the description.
If you are implementing a feature request, please check with the maintainers that the feature will be accepted first.
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.
Same for all the changes. Just focus on your feature please.
const Express = require("express"); | ||
const AuthRouter = Express.Router(); | ||
const {logout, signin, signup, verifyEmail, forgotPassword,resetPassword }=require("../controller/auth"); |
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.
please don't change anything from export-import to require as I am using Babel to handle this.
what I have done:
Fixes Issue#19