Skip to content

Commit

Permalink
Merge pull request #963 from AI4Bharat/video_listing-fetch
Browse files Browse the repository at this point in the history
isactive added
  • Loading branch information
aparna-aa authored Dec 26, 2024
2 parents 286d51c + b7c4b22 commit 1e2e4c2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion backend/organization/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ def get_org_report_tasks(
pass
elif "VoiceOver" in task.get_task_type_label:
word_count = "-"

is_active = task.is_active
tasks_list.append(
{
"task_id": {
Expand All @@ -452,6 +452,11 @@ def get_org_report_tasks(
"label": "Video Name",
"viewColumns": False,
},
"is_active": {
"value": str(is_active),
"label": "Is Active",
"viewColumns": False,
},
"video_url": {
"value": task.video.url,
"label": "Video URL",
Expand Down

0 comments on commit 1e2e4c2

Please sign in to comment.