summaryrefslogtreecommitdiff
path: root/app/models/milestone.rb
diff options
context:
space:
mode:
authorRubén Dávila <rdavila84@gmail.com>2016-02-03 10:27:46 -0500
committerRubén Dávila <rdavila84@gmail.com>2016-02-03 10:27:46 -0500
commit31e1a38b63e7ecd555d09c5a5e34107d50a6a73c (patch)
treea2bee8ad17d6678621f9e5031d7a4d98b3d80dac /app/models/milestone.rb
parent5bad3516d4bfac6d3445c06f5dc105ebe36c5c11 (diff)
downloadgitlab-ce-31e1a38b63e7ecd555d09c5a5e34107d50a6a73c.tar.gz
Some refactor for CSS after code review.
Diffstat (limited to 'app/models/milestone.rb')
-rw-r--r--app/models/milestone.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/models/milestone.rb b/app/models/milestone.rb
index e75a2f89d90..4b8034b6f5b 100644
--- a/app/models/milestone.rb
+++ b/app/models/milestone.rb
@@ -110,6 +110,9 @@ class Milestone < ActiveRecord::Base
0
end
+ # Returns the elapsed time (in percent) since the Milestone creation date until today.
+ # If the Milestone doesn't have a due_date then returns 0 since we can't calculate the elapsed time.
+ # If the Milestone is overdue then it returns 100%.
def percent_time_used
return 0 unless due_date
return 100 if expired?