Skip to content

Commit e90b7b3

Browse files
lgelauffclaude
andcommitted
revert: drop juror get_index only_active passthrough (moved to #571)
This behavioral fix belongs to #571 (juror round listing), not the buildservice migration. Restores master's only_active=True to keep #564 infra-only. Refs #571 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent e7d609b commit e90b7b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

montage/juror_endpoints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def get_index(user_dao, only_active=True):
8383
Summary: Get juror-level index of active campaigns and rounds.
8484
"""
8585
juror_dao = JurorDAO(user_dao)
86-
counts = juror_dao.get_all_rounds_task_counts(only_active=only_active)
86+
counts = juror_dao.get_all_rounds_task_counts(only_active=True)
8787
stats = [make_juror_round_details(rnd, rnd_stats, ballot)
8888
for rnd, rnd_stats, ballot in counts]
8989
return stats

0 commit comments

Comments
 (0)