Skip to content
Snippets Groups Projects
Commit 0e2a2243 authored by Glenda Train's avatar Glenda Train
Browse files

Merge branch v1.6.0 into auxiliar-route

parents d2a12c0c 3265b415
No related branches found
No related tags found
2 merge requests!148Auxiliar route,!145v1.6.0
...@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. ...@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/). and this project adheres to [Semantic Versioning](http://semver.org/).
## 1.6.0 - 2018-08-14
### Added
- Add school infrastructure route
## 1.5.0 - 2018-07-30 ## 1.5.0 - 2018-07-30
### Added ### Added
- Add portaMec route - Add portaMec route
......
...@@ -56,6 +56,8 @@ const downloads = require(`${libs}/routes/downloads`); ...@@ -56,6 +56,8 @@ const downloads = require(`${libs}/routes/downloads`);
const infrastructure = require(`${libs}/routes/infrastructure`); const infrastructure = require(`${libs}/routes/infrastructure`);
const schoolInfrastructure = require(`${libs}/routes/schoolInfrastructure`);
const distributionFactor = require(`${libs}/routes/distributionFactor`); const distributionFactor = require(`${libs}/routes/distributionFactor`);
const siope = require(`${libs}/routes/siope`); const siope = require(`${libs}/routes/siope`);
...@@ -104,6 +106,7 @@ api.use('/reset', resetToken); ...@@ -104,6 +106,7 @@ api.use('/reset', resetToken);
api.use('/education_years', educationYears); api.use('/education_years', educationYears);
api.use('/downloads', downloads); api.use('/downloads', downloads);
api.use('/infrastructure', infrastructure); api.use('/infrastructure', infrastructure);
api.use('/school_infrastructure', schoolInfrastructure);
api.use('/distribution_factor', distributionFactor); api.use('/distribution_factor', distributionFactor);
api.use('/siope', siope); api.use('/siope', siope);
api.use('/out_of_school', outOfSchool); api.use('/out_of_school', outOfSchool);
......
This diff is collapsed.
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