gitlabhq/app/roles/votes.rb

33 lines
545 B
Ruby
Raw Permalink Normal View History

2012-09-08 02:23:49 +02:00
module Votes
# Return the number of +1 comments (upvotes)
def upvotes
notes.select(&:upvote?).size
end
2012-09-08 02:30:47 +02:00
2012-09-11 16:47:59 +02:00
def upvotes_in_percent
if votes_count.zero?
0
else
100.0 / votes_count * upvotes
end
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
2012-09-11 16:47:59 +02:00
def downvotes_in_percent
if votes_count.zero?
0
else
100.0 - upvotes_in_percent
end
end
2012-09-08 02:37:29 +02:00
# Return the total number of votes
def votes_count
upvotes + downvotes
end
end