Module: Voteable

Extended by:
ActiveSupport::Concern
Defined in:
lib/voteable_gus.rb

Instance Method Summary collapse

Instance Method Details

#total_votesObject



9
10
11
# File 'lib/voteable_gus.rb', line 9

def total_votes
  self.votes.where(vote: true).count - self.votes.where(vote: false).count
end