arooo
arooo copied to clipboard
Show number of votes in the last 90 days by every active voting member
What type of user is this for? (applicant/member/voting member/admin) show to admin
Description Show number of votes in the last 90 days by every active voting member Te purpose is to tell which voting members are actually voting
Screenshots of current behavior, if any
I pulled this as a one-time query from heroku "data clips" with sql:
select users.name, count(votes.id)
from votes
join users on votes.user_id = users.id
where votes.created_at > '2025-01-01'
group by users.name