Skip to content

Commit

Permalink
Merge branch 'development' of https://github.com/HackClubNUV/made-easy
Browse files Browse the repository at this point in the history
…into development
  • Loading branch information
shreyaparadkar committed Jul 30, 2021
2 parents 68e47ff + 84c0b74 commit ad604bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/routes/User.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import express from 'express';
const User = express.Router();
import {getUserProgres, getAllUsers} from '../controllers/user.js'

User.route('/').get(getUserProgres);
User.route('/').post(getUserProgres);
User.route('/users').get(getAllUsers);
export {User};

0 comments on commit ad604bb

Please sign in to comment.