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

Add status to dictionary represantion

parent a9efc06d
No related branches found
No related tags found
No related merge requests found
...@@ -465,6 +465,7 @@ class Corpus(db.Model): ...@@ -465,6 +465,7 @@ class Corpus(db.Model):
return {'id': self.id, return {'id': self.id,
'creation_date': self.creation_date.timestamp(), 'creation_date': self.creation_date.timestamp(),
'description': self.description, 'description': self.description,
'status': self.status,
'title': self.title, 'title': self.title,
'user_id': self.user_id} 'user_id': self.user_id}
......
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