add missing semicolons

This commit is contained in:
Patrick Jentsch 2023-10-04 13:48:10 +02:00
parent f566e276a1
commit 068211a72b

View File

@ -11,7 +11,7 @@ Requests.jobs.entity.delete = (jobId) => {
method: 'DELETE'
};
return Requests.JSONfetch(input, init);
}
};
Requests.jobs.entity.log = (jobId) => {
let input = `/jobs/${jobId}/log`;
@ -19,7 +19,7 @@ Requests.jobs.entity.log = (jobId) => {
method: 'GET'
};
return Requests.JSONfetch(input, init);
}
};
Requests.jobs.entity.restart = (jobId) => {
let input = `/jobs/${jobId}/restart`;
@ -27,4 +27,4 @@ Requests.jobs.entity.restart = (jobId) => {
method: 'POST'
};
return Requests.JSONfetch(input, init);
}
};