Skip to content

Commit

Permalink
change(qaf): remove status column
Browse files Browse the repository at this point in the history
  • Loading branch information
nRamstedt committed Jun 17, 2024
1 parent 072c129 commit 0c91a95
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions fai-rag-app/fai-backend/fai_backend/qaf/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ def questions(
'timestamp.created': question.timestamp.created.date(),
'timestamp.modified': format_datetime_human_readable(question.timestamp.modified, 1),
'tags': question.tags,
'status': question.status,
'review_status': question.review_status,
'link': f'/questions/{question.id}',
}
Expand All @@ -99,7 +98,6 @@ def questions(
columns=[
{'key': 'subject', 'label': 'Subject'},
{'key': 'errand_id', 'label': 'Errand ID'},
{'key': 'status', 'label': 'Status'},
{'key': 'timestamp.modified', 'label': 'Modified'},
{'key': 'timestamp.created', 'label': 'Created'},
{'key': 'review_status', 'label': 'Review Status'},
Expand Down

0 comments on commit 0c91a95

Please sign in to comment.