Files
nairobi/app/helpers/poll_recounts_helper.rb
2017-01-27 15:19:03 +01:00

7 lines
131 B
Ruby

module PollRecountsHelper
def recount_for_date(recounts, date)
recounts.select {|r| r.date.to_date == date}.first
end
end