arooo icon indicating copy to clipboard operation
arooo copied to clipboard

Show number of votes in the last 90 days by every active voting member

Open compwron opened this issue 6 months ago • 0 comments

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

compwron avatar Jun 22 '25 20:06 compwron