Skip to content
Snippets Groups Projects
Commit a21d98b6 authored by Gustavo Soviersovski's avatar Gustavo Soviersovski
Browse files

Fix reset token route

parent 4cee6dfe
No related branches found
No related tags found
1 merge request!116Release v1.0.0
Pipeline #
......@@ -44,6 +44,8 @@ const oauth2 = require(`${libs}/middlewares/oauth2`);
const verifyToken = require(`${libs}/routes/verifyToken`);
const resetToken = require(`${libs}/routes/resetToken`);
const educationYears = require(`${libs}/routes/educationYears`);
api.get('/', (req, res) => {
......@@ -70,6 +72,7 @@ api.use('/population', population);
api.use('/idhml', idhml);
api.use('/auth/token', oauth2.token);
api.use('/verify', verifyToken);
api.use('/reset', resetToken);
api.use('/education_years', educationYears);
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