infusionvlc/infusion

View on GitHub
app/helpers/proposals_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module ProposalsHelper
  # Returns current proposal's votes count
  def proposal_votes(proposal)
    count = proposal.votes.size
    I18n.t 'proposal.votes', count: count
  end
end