2012-09-08 02:23:49 +02:00
|
|
|
module Votes
|
2012-06-07 14:44:57 +02:00
|
|
|
# Return the number of +1 comments (upvotes)
|
|
|
|
def upvotes
|
|
|
|
notes.select(&:upvote?).size
|
|
|
|
end
|
2012-09-08 02:30:47 +02:00
|
|
|
|
|
|
|
# Return the number of -1 comments (downvotes)
|
|
|
|
def downvotes
|
|
|
|
notes.select(&:downvote?).size
|
|
|
|
end
|
2012-09-08 02:37:29 +02:00
|
|
|
|
|
|
|
# Return the total number of votes
|
|
|
|
def votes_count
|
|
|
|
upvotes + downvotes
|
|
|
|
end
|
2012-06-07 14:44:57 +02:00
|
|
|
end
|