consul/consul

View on GitHub
app/controllers/officing/polls_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Officing::PollsController < Officing::BaseController
  before_action :verify_booth

  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

  def final
    @polls = if current_user.poll_officer?
               current_user.poll_officer.final_days_assigned_polls.select do |poll|
                 poll.ends_at > 2.weeks.ago && poll.expired? || poll.ends_at.today?
               end
             else
               []
             end
  end
end