Commit 29f1f5bd authored by Stan Hu's avatar Stan Hu

Merge branch '31343-remove-freeze-from-license-model' into 'master'

Remove unnecessary use of freeze from License model

See merge request gitlab-org/gitlab!56709
parents 7c0d1f83 57108615
......@@ -4,9 +4,9 @@ class License < ApplicationRecord
include ActionView::Helpers::NumberHelper
include Gitlab::Utils::StrongMemoize
STARTER_PLAN = 'starter'.freeze
PREMIUM_PLAN = 'premium'.freeze
ULTIMATE_PLAN = 'ultimate'.freeze
STARTER_PLAN = 'starter'
PREMIUM_PLAN = 'premium'
ULTIMATE_PLAN = 'ultimate'
CLOUD_LICENSE_TYPE = 'cloud'
ALLOWED_PERCENTAGE_OF_USERS_OVERAGE = (10 / 100.0).freeze
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment