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>2022-06-20 14:10:13 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-06-20 14:10:13 +0300
commit0ea3fcec397b69815975647f5e2aa5fe944a8486 (patch)
tree7979381b89d26011bcf9bdc989a40fcc2f1ed4ff /app/models/users
parent72123183a20411a36d607d70b12d57c484394c8e (diff)
Add latest changes from gitlab-org/gitlab@15-1-stable-eev15.1.0-rc42
Diffstat (limited to 'app/models/users')
-rw-r--r--app/models/users/callout.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/models/users/callout.rb b/app/models/users/callout.rb
index b3729c84dd6..0ecae4d148a 100644
--- a/app/models/users/callout.rb
+++ b/app/models/users/callout.rb
@@ -51,12 +51,16 @@ module Users
attention_requests_side_nav: 48,
minute_limit_banner: 49,
preview_user_over_limit_free_plan_alert: 50, # EE-only
- user_reached_limit_free_plan_alert: 51 # EE-only
+ user_reached_limit_free_plan_alert: 51, # EE-only
+ submit_license_usage_data_banner: 52, # EE-only
+ personal_project_limitations_banner: 53 # EE-only
}
validates :feature_name,
presence: true,
uniqueness: { scope: :user_id },
inclusion: { in: Users::Callout.feature_names.keys }
+
+ scope :with_feature_name, -> (feature_name) { where(feature_name: feature_name) }
end
end