Support deleting a task from a schedule

This commit is contained in:
Dane Everitt
2020-03-18 21:08:32 -07:00
parent 5345a2a3e1
commit 78ed343a34
10 changed files with 172 additions and 8 deletions

View File

@@ -0,0 +1,9 @@
import http from '@/api/http';
export default (uuid: string, scheduleId: number, taskId: number): Promise<void> => {
return new Promise((resolve, reject) => {
http.delete(`/api/client/servers/${uuid}/schedules/${scheduleId}/tasks/${taskId}`)
.then(() => resolve())
.catch(reject);
})
};