mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-11-03 20:02:47 +00:00 
			
		
		
		
	Add dir to job creation.
This commit is contained in:
		@@ -56,7 +56,11 @@ def service(service_handle):
 | 
			
		||||
                ''' TODO: Use secure filename '''
 | 
			
		||||
                filename = secure_filename(file.filename)
 | 
			
		||||
                file.save(os.path.join(dir, filename))
 | 
			
		||||
                job_input = JobInput(filename=filename, job=job)
 | 
			
		||||
                job_input = JobInput(
 | 
			
		||||
                    dir=os.path.join(str(job.user_id), 'jobs', str(job.id)),
 | 
			
		||||
                    filename=filename,
 | 
			
		||||
                    job=job
 | 
			
		||||
                )
 | 
			
		||||
                db.session.add(job_input)
 | 
			
		||||
            job.status = 'submitted'
 | 
			
		||||
            db.session.commit()
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user