Skip to content
Snippets Groups Projects
Commit 068211a7 authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

add missing semicolons

parent f566e276
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ Requests.jobs.entity.delete = (jobId) => { ...@@ -11,7 +11,7 @@ Requests.jobs.entity.delete = (jobId) => {
method: 'DELETE' method: 'DELETE'
}; };
return Requests.JSONfetch(input, init); return Requests.JSONfetch(input, init);
} };
Requests.jobs.entity.log = (jobId) => { Requests.jobs.entity.log = (jobId) => {
let input = `/jobs/${jobId}/log`; let input = `/jobs/${jobId}/log`;
...@@ -19,7 +19,7 @@ Requests.jobs.entity.log = (jobId) => { ...@@ -19,7 +19,7 @@ Requests.jobs.entity.log = (jobId) => {
method: 'GET' method: 'GET'
}; };
return Requests.JSONfetch(input, init); return Requests.JSONfetch(input, init);
} };
Requests.jobs.entity.restart = (jobId) => { Requests.jobs.entity.restart = (jobId) => {
let input = `/jobs/${jobId}/restart`; let input = `/jobs/${jobId}/restart`;
...@@ -27,4 +27,4 @@ Requests.jobs.entity.restart = (jobId) => { ...@@ -27,4 +27,4 @@ Requests.jobs.entity.restart = (jobId) => {
method: 'POST' method: 'POST'
}; };
return Requests.JSONfetch(input, init); return Requests.JSONfetch(input, init);
} };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment