Files
nairobi/app/controllers/officing/polls_controller.rb
2017-01-03 22:22:52 +01:00

8 lines
231 B
Ruby

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