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

Add new values to to_dict methods

parent 83f1aa1a
No related branches found
No related tags found
No related merge requests found
......@@ -274,6 +274,7 @@ class JobInput(db.Model):
def to_dict(self):
return {'id': self.id,
'dir': self.dir,
'filename': self.filename,
'job_id': self.job_id,
'results': [result.to_dict() for result in self.results]}
......@@ -299,8 +300,10 @@ class JobResult(db.Model):
def to_dict(self):
return {'id': self.id,
'dir': self.dir,
'filename': self.filename,
'job_id': self.job_id}
'job_id': self.job_id,
'job_input_id': self.job_input_id}
class Job(db.Model):
......
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