mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-11-04 04:12:45 +00:00 
			
		
		
		
	add missing semicolons
This commit is contained in:
		@@ -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) => {
 | 
				
			|||||||
    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) => {
 | 
				
			|||||||
    method: 'POST'
 | 
					    method: 'POST'
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
  return Requests.JSONfetch(input, init);
 | 
					  return Requests.JSONfetch(input, init);
 | 
				
			||||||
} 
 | 
					};
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user