(req)
| 77 | } |
| 78 | |
| 79 | static createJob(req) { |
| 80 | const { job_schedule } = req.body || {}; |
| 81 | validateJobSchedule(req.config, job_schedule); |
| 82 | return rest.create( |
| 83 | req.config, |
| 84 | req.auth, |
| 85 | '_JobSchedule', |
| 86 | formatJobSchedule(job_schedule), |
| 87 | req.client, |
| 88 | req.info.context |
| 89 | ); |
| 90 | } |
| 91 | |
| 92 | static editJob(req) { |
| 93 | const { objectId } = req.params; |
nothing calls this directly
no test coverage detected