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
path: root/app
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-07-03 15:08:26 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-07-03 15:08:26 +0300
commit51e69ca62138b625ccad219644d9b5a4846fc533 (patch)
tree27c18a8ef748403f3e334fc7d8d7d132949574a7 /app
parent5b5ae71251a8810c98d6d46c4d48d364fecb985f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app')
-rw-r--r--app/models/users/callout.rb16
-rw-r--r--app/models/users/group_callout.rb16
2 files changed, 16 insertions, 16 deletions
diff --git a/app/models/users/callout.rb b/app/models/users/callout.rb
index 38e518b6d3e..e039386c4f8 100644
--- a/app/models/users/callout.rb
+++ b/app/models/users/callout.rb
@@ -55,10 +55,10 @@ module Users
submit_license_usage_data_banner: 52, # EE-only
personal_project_limitations_banner: 53, # EE-only
mr_experience_survey: 54,
- namespace_storage_limit_banner_info_threshold: 55, # EE-only
- namespace_storage_limit_banner_warning_threshold: 56, # EE-only
- namespace_storage_limit_banner_alert_threshold: 57, # EE-only
- namespace_storage_limit_banner_error_threshold: 58, # EE-only
+ # 55 removed in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/121920
+ namespace_storage_limit_alert_warning_threshold: 56, # EE-only
+ namespace_storage_limit_alert_alert_threshold: 57, # EE-only
+ namespace_storage_limit_alert_error_threshold: 58, # EE-only
project_quality_summary_feedback: 59, # EE-only
merge_request_settings_moved_callout: 60,
new_top_level_group_alert: 61,
@@ -66,10 +66,10 @@ module Users
# 63 and 64 were removed with https://gitlab.com/gitlab-org/gitlab/-/merge_requests/120233
branch_rules_info_callout: 65,
create_runner_workflow_banner: 66,
- repository_storage_limit_banner_info_threshold: 67, # EE-only
- repository_storage_limit_banner_warning_threshold: 68, # EE-only
- repository_storage_limit_banner_alert_threshold: 69, # EE-only
- repository_storage_limit_banner_error_threshold: 70, # EE-only
+ # 67 removed in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/121920
+ project_repository_limit_alert_warning_threshold: 68, # EE-only
+ project_repository_limit_alert_alert_threshold: 69, # EE-only
+ project_repository_limit_alert_error_threshold: 70, # EE-only
new_navigation_callout: 71,
code_suggestions_third_party_callout: 72, # EE-only
namespace_over_storage_users_combined_alert: 73 # EE-only
diff --git a/app/models/users/group_callout.rb b/app/models/users/group_callout.rb
index c5946197b6f..74b653b5777 100644
--- a/app/models/users/group_callout.rb
+++ b/app/models/users/group_callout.rb
@@ -17,19 +17,19 @@ module Users
preview_user_over_limit_free_plan_alert: 7, # EE-only
user_reached_limit_free_plan_alert: 8, # EE-only
free_group_limited_alert: 9, # EE-only
- namespace_storage_limit_banner_info_threshold: 10, # EE-only
- namespace_storage_limit_banner_warning_threshold: 11, # EE-only
- namespace_storage_limit_banner_alert_threshold: 12, # EE-only
- namespace_storage_limit_banner_error_threshold: 13, # EE-only
+ # 10 removed in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/121920
+ namespace_storage_limit_alert_warning_threshold: 11, # EE-only
+ namespace_storage_limit_alert_alert_threshold: 12, # EE-only
+ namespace_storage_limit_alert_error_threshold: 13, # EE-only
usage_quota_trial_alert: 14, # EE-only
preview_usage_quota_free_plan_alert: 15, # EE-only
enforcement_at_limit_alert: 16, # EE-only
web_hook_disabled: 17, # EE-only
unlimited_members_during_trial_alert: 18, # EE-only
- repository_storage_limit_banner_info_threshold: 19, # EE-only
- repository_storage_limit_banner_warning_threshold: 20, # EE-only
- repository_storage_limit_banner_alert_threshold: 21, # EE-only
- repository_storage_limit_banner_error_threshold: 22, # EE-only
+ # 19 removed in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/121920
+ project_repository_limit_alert_warning_threshold: 20, # EE-only
+ project_repository_limit_alert_alert_threshold: 21, # EE-only
+ project_repository_limit_alert_error_threshold: 22, # EE-only
namespace_over_storage_users_combined_alert: 23 # EE-only
}