Files
nairobi/app/controllers/officing/polls_controller.rb
2017-01-30 17:44:39 +01:00

8 lines
274 B
Ruby

class Officing::PollsController < Officing::BaseController
def index
@polls = current_user.poll_officer? ? current_user.poll_officer.voting_days_assigned_polls : []
@polls = @polls.select {|poll| poll.current?(Time.current) || poll.current?(1.day.ago)}
end
end