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-04-22 18:09:27 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-04-22 18:09:27 +0300
commit7a7345366550f509c03595e0dada7cbd0d73103d (patch)
treeae2c4e74faa9f87237082abf4b23f325e34df6e3 /app/models/plan.rb
parentae96e65ee23d81be3924b87ed16becbbbe002b91 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/models/plan.rb')
-rw-r--r--app/models/plan.rb38
1 files changed, 38 insertions, 0 deletions
diff --git a/app/models/plan.rb b/app/models/plan.rb
new file mode 100644
index 00000000000..5cfa1e258d6
--- /dev/null
+++ b/app/models/plan.rb
@@ -0,0 +1,38 @@
+# frozen_string_literal: true
+
+class Plan < ApplicationRecord
+ DEFAULT = 'default'.freeze
+
+ has_one :limits, class_name: 'PlanLimits'
+
+ ALL_PLANS = [DEFAULT].freeze
+ DEFAULT_PLANS = [DEFAULT].freeze
+ private_constant :ALL_PLANS, :DEFAULT_PLANS
+
+ # This always returns an object
+ def self.default
+ Gitlab::SafeRequestStore.fetch(:plan_default) do
+ # find_by allows us to find object (cheaply) against replica DB
+ # safe_find_or_create_by does stick to primary DB
+ find_by(name: DEFAULT) || safe_find_or_create_by(name: DEFAULT)
+ end
+ end
+
+ def self.all_plans
+ ALL_PLANS
+ end
+
+ def self.default_plans
+ DEFAULT_PLANS
+ end
+
+ def default?
+ self.class.default_plans.include?(name)
+ end
+
+ def paid?
+ false
+ end
+end
+
+Plan.prepend_if_ee('EE::Plan')