Skip to content
Snippets Groups Projects

Merge new updates into master

2 files
+ 10
4
Compare changes
  • Side-by-side
  • Inline

Files

+ 5
2
@@ -162,8 +162,11 @@ disciplinesApp.get('/gender', (req, res, next) => {
@@ -162,8 +162,11 @@ disciplinesApp.get('/gender', (req, res, next) => {
disciplinesApp.get('/contract_type', (req, res, next) => {
disciplinesApp.get('/contract_type', (req, res, next) => {
req.result = [];
req.result = [
for(let i = 1; i <= 5; ++i) {
id: "null",
 
name: id2str.contractType("null")
 
];
 
for(let i = 1; i <= 4; ++i) {
req.result.push({
req.result.push({
id: i,
id: i,
name: id2str.contractType(i)
name: id2str.contractType(i)
Loading