Skip to content
Snippets Groups Projects
Commit 3c7962d5 authored by Lucas Gabriel Lima's avatar Lucas Gabriel Lima
Browse files

add user route to app (was lost during merge)

parent 20fa0d39
No related branches found
No related tags found
2 merge requests!116Release v1.0.0,!25Auth
Pipeline #
......@@ -12,6 +12,8 @@ const city = require('./city');
const school = require('./school');
const user = require('./user');
api.get('/', (req, res) => {
res.json({ msg: 'SimCAQ API is running' });
});
......@@ -22,5 +24,6 @@ api.use('/state', state);
api.use('/region', region);
api.use('/city', city);
api.use('/school', school);
api.use('/user', user);
module.exports = api;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment