mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-10-31 18:42:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			776 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			776 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /*****************************************************************************
 | |
| * Requests for /jobs routes                                                  *
 | |
| *****************************************************************************/
 | |
| Requests.jobs = {};
 | |
| 
 | |
| Requests.jobs.entity = {};
 | |
| 
 | |
| Requests.jobs.entity.delete = (jobId) => {
 | |
|   let input = `/jobs/${jobId}`;
 | |
|   let init = {
 | |
|     method: 'DELETE'
 | |
|   };
 | |
|   return Requests.JSONfetch(input, init);
 | |
| };
 | |
| 
 | |
| Requests.jobs.entity.log = (jobId) => {
 | |
|   let input = `/jobs/${jobId}/log`;
 | |
|   let init = {
 | |
|     method: 'GET'
 | |
|   };
 | |
|   return Requests.JSONfetch(input, init);
 | |
| };
 | |
| 
 | |
| Requests.jobs.entity.restart = (jobId) => {
 | |
|   let input = `/jobs/${jobId}/restart`;
 | |
|   let init = {
 | |
|     method: 'POST'
 | |
|   };
 | |
|   return Requests.JSONfetch(input, init);
 | |
| };
 |