Skip to content
Snippets Groups Projects

Merge new updates into master

3 files
+ 13
5
Compare changes
  • Side-by-side
  • Inline

Files

+ 2
1
@@ -18,12 +18,13 @@ You should have received a copy of the GNU General Public License
@@ -18,12 +18,13 @@ You should have received a copy of the GNU General Public License
along with simcaq-node. If not, see <https://www.gnu.org/licenses/>.
along with simcaq-node. If not, see <https://www.gnu.org/licenses/>.
*/
*/
module.exports = function studentDeficiency(id) {
module.exports = function schoolType(id) {
switch (id) {
switch (id) {
case 1:
case 1:
return 'Pública';
return 'Pública';
case 2:
case 2:
return 'Privada';
return 'Privada';
 
case 9:
default:
default:
return 'Não classificado';
return 'Não classificado';
}
}
Loading