diff --git a/src/libs/routes/class.js b/src/libs/routes/class.js index e24b1b480c168fa8efa6a572d4648d2c73bbad4a..678bfbd3272ea9f61adb9889b80cae7c90e1263d 100644 --- a/src/libs/routes/class.js +++ b/src/libs/routes/class.js @@ -68,7 +68,7 @@ classApp.get('/source', (req, res, next) => { next(); }, query, response('source')); -classApp.get('/location', cache('15 day'), (req, res, next) => { +classApp.get('/location', (req, res, next) => { req.result = [ {id: 1, name: 'Urbana'}, {id: 2, name: 'Rural'} @@ -76,7 +76,7 @@ classApp.get('/location', cache('15 day'), (req, res, next) => { next(); }, response('location')); -classApp.get('/diff_location', cache('15 day'), (req, res, next) => { +classApp.get('/diff_location', (req, res, next) => { req.result = [ {id: 0, name: "A escola não está em localidade diferenciada"}, {id: 1, name: "Ãrea de assentamento"}, diff --git a/src/libs/routes/employees.js b/src/libs/routes/employees.js index 8fbcd2a1d8f70143a197eb601eb3b6b77316e52a..d0cce903be884c0dd7522bafa77c6bfdffc07b2e 100644 --- a/src/libs/routes/employees.js +++ b/src/libs/routes/employees.js @@ -70,7 +70,7 @@ employeesApp.get('/source', (req, res, next) => { next(); }, query, response('source')); -employeesApp.get('/location', cache('15 day'), (req, res, next) => { +employeesApp.get('/location', (req, res, next) => { req.result = [ {id: 1, name: 'Urbana'}, {id: 2, name: 'Rural'} @@ -78,7 +78,7 @@ employeesApp.get('/location', cache('15 day'), (req, res, next) => { next(); }, response('location')); -employeesApp.get('/diff_location', cache('15 day'), (req, res, next) => { +employeesApp.get('/diff_location', (req, res, next) => { req.result = [ {id: 0, name: "A escola não está em localidade diferenciada"}, {id: 1, name: "Ãrea de assentamento"}, diff --git a/src/libs/routes/enrollment.js b/src/libs/routes/enrollment.js index d749336da7e86fcf95df846f4ac55191411e32c7..a66c3cecceef5aae0abe4750756cd760c33ca398 100644 --- a/src/libs/routes/enrollment.js +++ b/src/libs/routes/enrollment.js @@ -68,7 +68,7 @@ enrollmentApp.get('/source', (req, res, next) => { next(); }, query, response('source')); -enrollmentApp.get('/location', cache('15 day'), (req, res, next) => { +enrollmentApp.get('/location', (req, res, next) => { req.result = [ {id: 1, name: 'Urbana'}, {id: 2, name: 'Rural'} @@ -76,7 +76,7 @@ enrollmentApp.get('/location', cache('15 day'), (req, res, next) => { next(); }, response('location')); -enrollmentApp.get('/diff_location', cache('15 day'), (req, res, next) => { +enrollmentApp.get('/diff_location', (req, res, next) => { req.result = [ {id: 0, name: "A escola não está em localidade diferenciada"}, {id: 1, name: "Ãrea de assentamento"}, diff --git a/src/libs/routes/teacher.js b/src/libs/routes/teacher.js index 70580e09edbb02afa4ef3a9ba02de00f2aec3178..f4494edd0047d74477cb71e8698b8f3da81f881d 100644 --- a/src/libs/routes/teacher.js +++ b/src/libs/routes/teacher.js @@ -67,7 +67,7 @@ teacherApp.get('/source', (req, res, next) => { next(); }, query, response('source')); -teacherApp.get('/location', cache('15 day'), (req, res, next) => { +teacherApp.get('/location', (req, res, next) => { req.result = [ {id: 1, name: 'Urbana'}, {id: 2, name: 'Rural'} @@ -75,7 +75,7 @@ teacherApp.get('/location', cache('15 day'), (req, res, next) => { next(); }, response('location')); -teacherApp.get('/diff_location', cache('15 day'), (req, res, next) => { +teacherApp.get('/diff_location', (req, res, next) => { req.result = [ {id: 0, name: "A escola não está em localidade diferenciada"}, {id: 1, name: "Ãrea de assentamento"},