(req)
| 56 | } |
| 57 | |
| 58 | static getJobs(req) { |
| 59 | return rest.find(req.config, req.auth, '_JobSchedule', {}, {}).then(scheduledJobs => { |
| 60 | return { |
| 61 | response: scheduledJobs.results, |
| 62 | }; |
| 63 | }); |
| 64 | } |
| 65 | |
| 66 | static getJobsData(req) { |
| 67 | const config = req.config; |
no test coverage detected