e87390adb9
* update eslint and dependencies, fix linting errors that can be fixed with --fix * fix lots of linting errors * update eslintrc, fix some linting errors * fix all server side linting errors, untested * fix errors that fixing linting errors had caused * fix client side eslint errors * fix client side linting errors * fix refs lint errors * fix more linting errors * update eslint and dependencies, fix linting errors that can be fixed with --fix * fix lots of linting errors * update eslintrc, fix some linting errors * fix all server side linting errors, untested * fix errors that fixing linting errors had caused * fix client side eslint errors * fix client side linting errors * fix refs lint errors * fix more linting errors * fix some accessibility linting errors * fix a lot of linting errors * fix a billion more linting errors * hopefully fix all linting errors, still need to test * fix bugs that fixing linting had caused
18 lines
604 B
JavaScript
18 lines
604 B
JavaScript
import { Router } from 'express';
|
|
import * as UserController from '../controllers/user.controller';
|
|
|
|
const router = new Router();
|
|
|
|
router.route('/signup').post(UserController.createUser);
|
|
|
|
router.route('/signup/duplicate_check').get(UserController.duplicateUserCheck);
|
|
|
|
router.route('/preferences').put(UserController.updatePreferences);
|
|
|
|
router.route('/reset-password').post(UserController.resetPasswordInitiate);
|
|
|
|
router.route('/reset-password/:token').get(UserController.validateResetPasswordToken);
|
|
|
|
router.route('/reset-password/:token').post(UserController.updatePassword);
|
|
|
|
export default router;
|