Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-05-06 00:09:42 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-05-06 00:09:42 +0300
commit53288eeb6300a5c162f146b13d1710c71f0ee197 (patch)
tree790faa45cf2a56bb0022ef02f989ddbd8ab0c0d9 /app/models/plan.rb
parent38ceebb9b3a541f8530b379d5b5ab5e13ffc58ed (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/models/plan.rb')
-rw-r--r--app/models/plan.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/plan.rb b/app/models/plan.rb
index 5cfa1e258d6..acac5f9aeae 100644
--- a/app/models/plan.rb
+++ b/app/models/plan.rb
@@ -26,6 +26,10 @@ class Plan < ApplicationRecord
DEFAULT_PLANS
end
+ def actual_limits
+ self.limits || PlanLimits.new
+ end
+
def default?
self.class.default_plans.include?(name)
end