Skip to content
Snippets Groups Projects
Commit 858a0048 authored by Vytor Calixto's avatar Vytor Calixto :space_invader:
Browse files

Merge branch 'hotfix_1.8.3'

parents b4f93e67 5428eb63
Branches
Tags v1.8.3
No related merge requests found
Pipeline #18760 failed
......@@ -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/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## 1.8.3 - 2018-11-24
### Changed
- Fixed reulst return in classroom count
## 1.8.2 - 2018-11-23
### Changed
- Fixed class count route
......
......@@ -625,10 +625,7 @@ classroomCountApp.post('/', rqf.parse(), (req, res, next) => {
}
}
req.result = {
result: reduction || result,
leftovers
}
req.result = reduction || result;
next();
}, response('classroom_count'));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment