Skip to content
Snippets Groups Projects
Commit ddf71782 authored by Fernando Gbur dos Santos's avatar Fernando Gbur dos Santos
Browse files

[ADD] Adding email to api.js

parent 49c299c5
No related branches found
No related tags found
3 merge requests!391Hom -> Prod,!386Merge development -> homologa,!384Merging new_pnad -> dev again
......@@ -143,6 +143,8 @@ const activity = require(`${libs}/routes_v1/activity`);
const newPnad = require(`${libs}/routes_v1/newPnad`);
const email = require(`${libs}/routes_v1/email`);
api.get('/', (req, res) => {
res.json({ msg: 'SimCAQ API v1 is running' });
});
......@@ -202,6 +204,7 @@ api.use('/disciplines', disciplines);
api.use('/universityLocalOffer', universityLocalOffer);
api.use('/message', message);
api.use('/course_students', courseStudents);
api.use('/email', email);
api.use('/new_pnad', newPnad);
//Publication
......
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