Module: ApplicationSettingsHelper
- Extended by:
- ApplicationSettingsHelper
- Included in:
- ApplicationSettingsHelper, GitlabRoutingHelper, MergeRequestWidgetEntity
- Defined in:
- app/helpers/application_settings_helper.rb
Instance Method Summary collapse
- #all_protocols_enabled? ⇒ Boolean
- #allowed_protocols_present? ⇒ Boolean
- #anti_spam_service_enabled? ⇒ Boolean
-
#custom_admin_roles_available? ⇒ Boolean
Overridden in EE.
- #deletion_protection_data ⇒ Object
-
#deprecated_attributes ⇒ Object
ok to remove in REST API v5.
- #enabled_protocol ⇒ Object
- #enabled_protocol_button(container, protocol) ⇒ Object
- #expanded_by_default? ⇒ Boolean
- #external_authorization_allow_token_help_text ⇒ Object
- #external_authorization_client_certificate_help_text ⇒ Object
- #external_authorization_client_key_help_text ⇒ Object
- #external_authorization_client_pass_help_text ⇒ Object
- #external_authorization_client_url_help_text ⇒ Object
- #external_authorization_description ⇒ Object
- #external_authorization_service_attributes ⇒ Object
- #external_authorization_timeout_help_text ⇒ Object
- #external_authorization_url_help_text ⇒ Object
- #global_search_settings_checkboxes(form) ⇒ Object
- #http_enabled? ⇒ Boolean
- #import_sources_checkboxes(form) ⇒ Object
- #instance_clusters_enabled? ⇒ Boolean
- #integration_expanded?(substring) ⇒ Boolean
- #key_restriction_options_for_select(type) ⇒ Object
- #kroki_available_formats ⇒ Object
- #oauth_providers_checkboxes(form) ⇒ Object
- #pending_user_count ⇒ Object
- #registration_features_can_be_prompted? ⇒ Boolean
- #repository_storages_options_json ⇒ Object
- #restricted_level_checkboxes(form) ⇒ Object
- #runner_token_expiration_interval_attributes ⇒ Object
- #sidekiq_job_limiter_mode_help_text ⇒ Object
- #sidekiq_job_limiter_modes_for_select ⇒ Object
- #signup_enabled? ⇒ Boolean
- #signup_form_data ⇒ Object
- #ssh_enabled? ⇒ Boolean
- #storage_weights ⇒ Object
- #user_oauth_applications? ⇒ Boolean
- #valid_runner_registrars ⇒ Object
- #visible_attributes ⇒ Object
- #vscode_extension_marketplace_settings_description ⇒ Object
- #vscode_extension_marketplace_settings_view ⇒ Object
Instance Method Details
#all_protocols_enabled? ⇒ Boolean
50 51 52 |
# File 'app/helpers/application_settings_helper.rb', line 50 def all_protocols_enabled? Gitlab::CurrentSettings.enabled_git_access_protocol.blank? end |
#allowed_protocols_present? ⇒ Boolean
18 19 20 |
# File 'app/helpers/application_settings_helper.rb', line 18 def allowed_protocols_present? Gitlab::CurrentSettings.enabled_git_access_protocol.present? end |
#anti_spam_service_enabled? ⇒ Boolean
62 63 64 |
# File 'app/helpers/application_settings_helper.rb', line 62 def anti_spam_service_enabled? || spam_check_endpoint_enabled? end |
#custom_admin_roles_available? ⇒ Boolean
Overridden in EE
767 768 769 |
# File 'app/helpers/application_settings_helper.rb', line 767 def custom_admin_roles_available? false end |
#deletion_protection_data ⇒ Object
760 761 762 763 764 |
# File 'app/helpers/application_settings_helper.rb', line 760 def deletion_protection_data { deletion_adjourned_period: @application_setting[:deletion_adjourned_period] } end |
#deprecated_attributes ⇒ Object
ok to remove in REST API v5
676 677 678 679 680 681 |
# File 'app/helpers/application_settings_helper.rb', line 676 def deprecated_attributes [ :admin_notification_email, :asset_proxy_whitelist ] end |
#enabled_protocol ⇒ Object
22 23 24 25 26 27 28 29 |
# File 'app/helpers/application_settings_helper.rb', line 22 def enabled_protocol case Gitlab::CurrentSettings.enabled_git_access_protocol when 'http' Gitlab.config.gitlab.protocol when 'ssh' 'ssh' end end |
#enabled_protocol_button(container, protocol) ⇒ Object
66 67 68 69 70 71 72 73 |
# File 'app/helpers/application_settings_helper.rb', line 66 def (container, protocol) case protocol when 'ssh' (container, append_link: false) else (container, append_link: false) end end |
#expanded_by_default? ⇒ Boolean
683 684 685 |
# File 'app/helpers/application_settings_helper.rb', line 683 def Rails.env.test? end |
#external_authorization_allow_token_help_text ⇒ Object
211 212 213 |
# File 'app/helpers/application_settings_helper.rb', line 211 def s_("ExternalAuthorization|Does not apply if service URL is specified.") end |
#external_authorization_client_certificate_help_text ⇒ Object
226 227 228 229 |
# File 'app/helpers/application_settings_helper.rb', line 226 def s_("ExternalAuthorization|Certificate used to authenticate with the external authorization service. " \ "If blank, the server certificate is validated when accessing over HTTPS.") end |
#external_authorization_client_key_help_text ⇒ Object
231 232 233 234 |
# File 'app/helpers/application_settings_helper.rb', line 231 def s_("ExternalAuthorization|Private key of client authentication certificate. " \ "Encrypted when stored.") end |
#external_authorization_client_pass_help_text ⇒ Object
236 237 238 239 |
# File 'app/helpers/application_settings_helper.rb', line 236 def s_("ExternalAuthorization|Passphrase required to decrypt the private key. " \ "Encrypted when stored.") end |
#external_authorization_client_url_help_text ⇒ Object
241 242 243 244 |
# File 'app/helpers/application_settings_helper.rb', line 241 def s_("ExternalAuthorization|Classification label to use when requesting authorization if no specific " \ "label is defined on the project.") end |
#external_authorization_description ⇒ Object
206 207 208 209 |
# File 'app/helpers/application_settings_helper.rb', line 206 def s_("ExternalAuthorization|Access to projects is validated on an external service " \ "using their classification label.") end |
#external_authorization_service_attributes ⇒ Object
662 663 664 665 666 667 668 669 670 671 672 673 |
# File 'app/helpers/application_settings_helper.rb', line 662 def [ :external_auth_client_cert, :external_auth_client_key, :external_auth_client_key_pass, :external_authorization_service_default_label, :external_authorization_service_enabled, :external_authorization_service_timeout, :external_authorization_service_url, :allow_deploy_tokens_and_keys_with_external_authn ] end |
#external_authorization_timeout_help_text ⇒ Object
215 216 217 218 |
# File 'app/helpers/application_settings_helper.rb', line 215 def s_("ExternalAuthorization|Period GitLab waits for a response from the external " \ "service. If there is no response, access is denied. Default: 0.5 seconds.") end |
#external_authorization_url_help_text ⇒ Object
220 221 222 223 224 |
# File 'app/helpers/application_settings_helper.rb', line 220 def s_("ExternalAuthorization|URL to which the projects make authorization requests. If the URL is blank, cross-project " \ "features are available and can still specify classification " \ "labels for projects.") end |
#global_search_settings_checkboxes(form) ⇒ Object
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'app/helpers/application_settings_helper.rb', line 75 def global_search_settings_checkboxes(form) [ form.gitlab_ui_checkbox_component( :anonymous_searches_allowed, _("Allow unauthenticated users to use search"), checkbox_options: { checked: @application_setting.anonymous_searches_allowed, multiple: false } ), form.gitlab_ui_checkbox_component( :global_search_block_anonymous_searches_enabled, _("Restrict global search to authenticated users only"), checkbox_options: { checked: @application_setting.global_search_block_anonymous_searches_enabled, multiple: false } ), form.gitlab_ui_checkbox_component( :global_search_issues_enabled, _("Show issues in global search results"), checkbox_options: { checked: @application_setting.global_search_issues_enabled, multiple: false } ), form.gitlab_ui_checkbox_component( :global_search_merge_requests_enabled, _("Show merge requests in global search results"), checkbox_options: { checked: @application_setting.global_search_merge_requests_enabled, multiple: false } ), form.gitlab_ui_checkbox_component( :global_search_snippet_titles_enabled, _("Show snippets in global search results"), checkbox_options: { checked: @application_setting.global_search_snippet_titles_enabled, multiple: false } ), form.gitlab_ui_checkbox_component( :global_search_users_enabled, _("Show users in global search results"), checkbox_options: { checked: @application_setting.global_search_users_enabled, multiple: false } ) ] end |
#http_enabled? ⇒ Boolean
58 59 60 |
# File 'app/helpers/application_settings_helper.rb', line 58 def http_enabled? all_protocols_enabled? || Gitlab::CurrentSettings.enabled_git_access_protocol == 'http' end |
#import_sources_checkboxes(form) ⇒ Object
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
# File 'app/helpers/application_settings_helper.rb', line 150 def import_sources_checkboxes(form) import_sources_without_templates = Gitlab::ImportSources.import_table.reject do |importer| Gitlab::ImportSources.template?(importer.name) end import_sources_without_templates.map do |source| checked = @application_setting.import_sources.include?(source.name) form.gitlab_ui_checkbox_component( :import_sources, source.title, checkbox_options: { checked: checked, multiple: true, autocomplete: 'off' }, checked_value: source.name, unchecked_value: nil ) end end |
#instance_clusters_enabled? ⇒ Boolean
691 692 693 694 695 696 |
# File 'app/helpers/application_settings_helper.rb', line 691 def instance_clusters_enabled? clusterable = Clusters::Instance.new clusterable.certificate_based_clusters_enabled? && can?(current_user, :read_cluster, clusterable) end |
#integration_expanded?(substring) ⇒ Boolean
687 688 689 |
# File 'app/helpers/application_settings_helper.rb', line 687 def (substring) @application_setting.errors..any? { |k, _| k.to_s.start_with?(substring) } end |
#key_restriction_options_for_select(type) ⇒ Object
183 184 185 186 187 188 189 190 191 192 193 |
# File 'app/helpers/application_settings_helper.rb', line 183 def (type) = Gitlab::SSHPublicKey.supported_sizes(type).map do |bits| ["Must be at least #{bits} bits", bits] end [ ['Are allowed', 0], *, ['Are forbidden', ApplicationSetting::FORBIDDEN_KEY_VALUE] ] end |
#kroki_available_formats ⇒ Object
31 32 33 34 35 36 37 38 39 |
# File 'app/helpers/application_settings_helper.rb', line 31 def kroki_available_formats ApplicationSetting.kroki_formats_attributes.map do |key, value| { name: "kroki_formats_#{key}", label: value[:label], value: @application_setting.kroki_formats[key] || false } end end |
#oauth_providers_checkboxes(form) ⇒ Object
168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
# File 'app/helpers/application_settings_helper.rb', line 168 def oauth_providers_checkboxes(form) .map do |source| checked = @application_setting.disabled_oauth_sign_in_sources.exclude?(source.to_s) name = Gitlab::Auth::OAuth::Provider.label_for(source) form.gitlab_ui_checkbox_component( :enabled_oauth_sign_in_sources, name, checkbox_options: { checked: checked, multiple: true, autocomplete: 'off' }, checked_value: source, unchecked_value: nil ) end end |
#pending_user_count ⇒ Object
706 707 708 |
# File 'app/helpers/application_settings_helper.rb', line 706 def pending_user_count User.blocked_pending_approval.count end |
#registration_features_can_be_prompted? ⇒ Boolean
710 711 712 |
# File 'app/helpers/application_settings_helper.rb', line 710 def registration_features_can_be_prompted? !Gitlab::CurrentSettings.usage_ping_enabled? end |
#repository_storages_options_json ⇒ Object
195 196 197 198 199 200 201 202 203 204 |
# File 'app/helpers/application_settings_helper.rb', line 195 def = Gitlab.config.repositories.storages.map do |name, storage| { label: "#{name} - #{storage['gitaly_address']}", value: name } end .to_json end |
#restricted_level_checkboxes(form) ⇒ Object
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'app/helpers/application_settings_helper.rb', line 114 def restricted_level_checkboxes(form) restricted_visibility_levels_help_text = { Gitlab::VisibilityLevel::PUBLIC => s_( 'AdminSettings|If selected, only administrators are able to create public groups, projects, ' \ 'and snippets. Also, profiles are only visible to authenticated users.' ), Gitlab::VisibilityLevel::INTERNAL => s_( 'AdminSettings|If selected, only administrators are able to create internal groups, projects, and ' \ 'snippets.' ), Gitlab::VisibilityLevel::PRIVATE => s_( 'AdminSettings|If selected, only administrators are able to create private groups, projects, and ' \ 'snippets.' ) } Gitlab::VisibilityLevel..map do |label, level| checked = restricted_visibility_levels(true).include?(level) form.gitlab_ui_checkbox_component( :restricted_visibility_levels, checkbox_options: { checked: checked, multiple: true, autocomplete: 'off' }, checked_value: level, unchecked_value: nil ) do |c| c.with_label do visibility_level_icon(level) + content_tag(:span, label, { class: 'gl-ml-2' }) end c.with_help_text do restricted_visibility_levels_help_text.fetch(level) end end end end |
#runner_token_expiration_interval_attributes ⇒ Object
654 655 656 657 658 659 660 |
# File 'app/helpers/application_settings_helper.rb', line 654 def runner_token_expiration_interval_attributes { instance_runner_token_expiration_interval: @application_setting.runner_token_expiration_interval, group_runner_token_expiration_interval: @application_setting.group_runner_token_expiration_interval, project_runner_token_expiration_interval: @application_setting.project_runner_token_expiration_interval } end |
#sidekiq_job_limiter_mode_help_text ⇒ Object
246 247 248 249 250 |
# File 'app/helpers/application_settings_helper.rb', line 246 def sidekiq_job_limiter_mode_help_text _("How the job limiter handles jobs exceeding the thresholds specified below. " \ "The 'track' mode only logs the jobs. The 'compress' mode compresses the jobs and " \ "raises an exception if the compressed size exceeds the limit.") end |
#sidekiq_job_limiter_modes_for_select ⇒ Object
252 253 254 |
# File 'app/helpers/application_settings_helper.rb', line 252 def sidekiq_job_limiter_modes_for_select ApplicationSetting.sidekiq_job_limiter_modes.keys.map { |mode| [mode.humanize, mode] } end |
#signup_enabled? ⇒ Boolean
702 703 704 |
# File 'app/helpers/application_settings_helper.rb', line 702 def signup_enabled? !!Gitlab::CurrentSettings.signup_enabled end |
#signup_form_data ⇒ Object
714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 |
# File 'app/helpers/application_settings_helper.rb', line 714 def signup_form_data { host: new_user_registration_url(host: Gitlab.config.gitlab.host), settings_path: general_admin_application_settings_path(anchor: 'js-signup-settings'), signup_enabled: @application_setting[:signup_enabled].to_s, require_admin_approval_after_user_signup: @application_setting[:require_admin_approval_after_user_signup].to_s, email_confirmation_setting: @application_setting[:email_confirmation_setting].to_s, minimum_password_length: @application_setting[:minimum_password_length], minimum_password_length_min: ApplicationSetting::DEFAULT_MINIMUM_PASSWORD_LENGTH, minimum_password_length_max: Devise.password_length.max, minimum_password_length_help_link: promo_url(path: '/handbook/security/', anchor: 'gitlab-password-policy-guidelines'), domain_allowlist_raw: @application_setting.domain_allowlist_raw, new_user_signups_cap: @application_setting[:new_user_signups_cap].to_s, domain_denylist_enabled: @application_setting[:domain_denylist_enabled].to_s, denylist_type_raw_selected: (@application_setting.domain_denylist.present? || @application_setting.domain_denylist.blank?).to_s, domain_denylist_raw: @application_setting.domain_denylist_raw, email_restrictions_enabled: @application_setting[:email_restrictions_enabled].to_s, supported_syntax_link_url: 'https://github.com/google/re2/wiki/Syntax', email_restrictions: @application_setting.email_restrictions.to_s, after_sign_up_text: @application_setting[:after_sign_up_text].to_s, pending_user_count: pending_user_count } end |
#ssh_enabled? ⇒ Boolean
54 55 56 |
# File 'app/helpers/application_settings_helper.rb', line 54 def ssh_enabled? all_protocols_enabled? || enabled_protocol == 'ssh' end |
#storage_weights ⇒ Object
41 42 43 44 45 46 47 48 |
# File 'app/helpers/application_settings_helper.rb', line 41 def storage_weights # Instead of using a `Struct` we could wrap this into an object. # See https://gitlab.com/gitlab-org/gitlab/-/issues/358419 storages_weighted = @application_setting.repository_storages_with_default_weight weights = Struct.new(*storages_weighted.keys.map(&:to_sym)) weights.new(*storages_weighted.values) end |
#user_oauth_applications? ⇒ Boolean
14 15 16 |
# File 'app/helpers/application_settings_helper.rb', line 14 def user_oauth_applications? Gitlab::CurrentSettings.user_oauth_applications end |
#valid_runner_registrars ⇒ Object
698 699 700 |
# File 'app/helpers/application_settings_helper.rb', line 698 def valid_runner_registrars Gitlab::CurrentSettings.valid_runner_registrars end |
#visible_attributes ⇒ Object
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 |
# File 'app/helpers/application_settings_helper.rb', line 256 def visible_attributes [ :abuse_notification_email, :admin_mode, :after_sign_out_path, :after_sign_up_text, :akismet_api_key, :akismet_enabled, :allow_local_requests_from_hooks_and_services, :allow_local_requests_from_web_hooks_and_services, :allow_local_requests_from_system_hooks, :allow_possible_spam, :dns_rebinding_protection_enabled, :archive_builds_in_human_readable, :asset_proxy_enabled, :asset_proxy_secret_key, :asset_proxy_url, :asset_proxy_allowlist, :static_objects_external_storage_auth_token, :static_objects_external_storage_url, :authorized_keys_enabled, :auto_devops_enabled, :auto_devops_domain, :autocomplete_users_limit, :autocomplete_users_unauthenticated_limit, :allow_bypass_placeholder_confirmation, :ci_delete_pipelines_in_seconds_limit_human_readable, :ci_job_live_trace_enabled, :ci_partitions_size_limit, :concurrent_github_import_jobs_limit, :concurrent_bitbucket_import_jobs_limit, :concurrent_bitbucket_server_import_jobs_limit, :container_expiration_policies_enable_historic_entries, :container_registry_expiration_policies_caching, :container_registry_token_expire_delay, :decompress_archive_file_timeout, :default_artifacts_expire_in, :default_branch_name, :default_branch_protection, :default_branch_protection_defaults, :default_ci_config_path, :default_group_visibility, :default_preferred_language, :default_project_creation, :default_project_visibility, :default_projects_limit, :default_snippet_visibility, :default_syntax_highlighting_theme, :default_dark_syntax_highlighting_theme, :delete_inactive_projects, :deletion_adjourned_period, :deny_all_requests_except_allowed, :disable_admin_oauth_scopes, :disable_feed_token, :disable_password_authentication_for_users_with_sso_identities, :root_moved_permanently_redirection, :disabled_oauth_sign_in_sources, :domain_denylist, :domain_denylist_enabled, # TODO Remove domain_denylist_raw in APIv5 (See https://gitlab.com/gitlab-org/gitlab-foss/issues/67204) :domain_denylist_raw, :domain_allowlist, # TODO Remove domain_allowlist_raw in APIv5 (See https://gitlab.com/gitlab-org/gitlab-foss/issues/67204) :domain_allowlist_raw, :outbound_local_requests_allowlist_raw, :dsa_key_restriction, :ecdsa_key_restriction, :ecdsa_sk_key_restriction, :ed25519_key_restriction, :ed25519_sk_key_restriction, :eks_integration_enabled, :eks_account_id, :eks_access_key_id, :eks_secret_access_key, :email_author_in_body, :email_confirmation_setting, :enabled_git_access_protocol, :enforce_ci_inbound_job_token_scope_enabled, :enforce_email_subaddress_restrictions, :require_email_verification_on_account_locked, :enforce_terms, :error_tracking_enabled, :error_tracking_api_url, :external_pipeline_validation_service_timeout, :external_pipeline_validation_service_token, :external_pipeline_validation_service_url, :failed_login_attempts_unlock_period_in_minutes, :first_day_of_week, :floc_enabled, :force_pages_access_control, :gitaly_timeout_default, :gitaly_timeout_medium, :gitaly_timeout_fast, :gitpod_enabled, :gitpod_url, :grafana_enabled, :grafana_url, :gravatar_enabled, :hashed_storage_enabled, :help_page_hide_commercial_content, :help_page_support_url, :help_page_documentation_base_url, :help_page_text, :hide_third_party_offers, :home_page_url, :housekeeping_enabled, :housekeeping_full_repack_period, :housekeeping_gc_period, :housekeeping_incremental_repack_period, :housekeeping_optimize_repository_period, :html_emails_enabled, :import_sources, :inactive_resource_access_tokens_delete_after_days, :inactive_projects_delete_after_months, :inactive_projects_min_size_mb, :inactive_projects_send_warning_email_after_months, :include_optional_metrics_in_service_ping, :invisible_captcha_enabled, :jira_connect_application_key, :jira_connect_public_key_storage_enabled, :jira_connect_proxy_url, :jira_connect_additional_audience_url, :math_rendering_limits_enabled, :max_artifacts_content_include_size, :max_artifacts_size, :max_attachment_size, :max_decompressed_archive_size, :max_export_size, :max_github_response_size_limit, :max_github_response_json_value_count, :max_http_decompressed_size, :max_http_response_size_limit, :max_import_size, :max_import_remote_file_size, :max_login_attempts, :max_pages_size, :max_pages_custom_domains_per_project, :max_terraform_state_size_bytes, :max_yaml_size_bytes, :max_yaml_depth, :metrics_method_call_threshold, :minimum_password_length, :mirror_available, :notify_on_unknown_sign_in, :organization_cluster_agent_authorization_enabled, :pages_domain_verification_enabled, :pages_unique_domain_default_enabled, :password_authentication_enabled_for_web, :password_authentication_enabled_for_git, :performance_bar_allowed_group_path, :performance_bar_enabled, :personal_access_token_prefix, :instance_token_prefix, :kroki_enabled, :kroki_url, :kroki_formats, :plantuml_enabled, :plantuml_url, :diagramsnet_enabled, :diagramsnet_url, :pages_extra_deployments_default_expiry_seconds, :polling_interval_multiplier, :project_export_enabled, :prometheus_metrics_enabled, :recaptcha_enabled, :recaptcha_private_key, :recaptcha_site_key, :login_recaptcha_protection_enabled, :receive_max_input_size, :repository_checks_enabled, :repository_storages_weighted, :require_admin_approval_after_user_signup, :require_admin_two_factor_authentication, :require_two_factor_authentication, :remember_me_enabled, :restricted_visibility_levels, :rsa_key_restriction, :session_expire_delay, :session_expire_from_init, :shared_runners_enabled, :shared_runners_text, :sign_in_restrictions, :signup_enabled, :silent_mode_enabled, :slack_app_enabled, :slack_app_id, :slack_app_secret, :slack_app_signing_secret, :slack_app_verification_token, :sourcegraph_enabled, :sourcegraph_url, :sourcegraph_public_only, :spam_check_endpoint_enabled, :spam_check_endpoint_url, :spam_check_api_key, :terminal_max_session_time, :terms, :terraform_state_encryption_enabled, :throttle_authenticated_api_enabled, :throttle_authenticated_api_period_in_seconds, :throttle_authenticated_api_requests_per_period, :throttle_authenticated_git_http_enabled, :throttle_authenticated_git_http_period_in_seconds, :throttle_authenticated_git_http_requests_per_period, :throttle_authenticated_git_lfs_enabled, :throttle_authenticated_git_lfs_period_in_seconds, :throttle_authenticated_git_lfs_requests_per_period, :throttle_authenticated_web_enabled, :throttle_authenticated_web_period_in_seconds, :throttle_authenticated_web_requests_per_period, :throttle_authenticated_packages_api_enabled, :throttle_authenticated_packages_api_period_in_seconds, :throttle_authenticated_packages_api_requests_per_period, :throttle_authenticated_files_api_enabled, :throttle_authenticated_files_api_period_in_seconds, :throttle_authenticated_files_api_requests_per_period, :throttle_authenticated_deprecated_api_enabled, :throttle_authenticated_deprecated_api_period_in_seconds, :throttle_authenticated_deprecated_api_requests_per_period, :throttle_unauthenticated_api_enabled, :throttle_unauthenticated_api_period_in_seconds, :throttle_unauthenticated_api_requests_per_period, :throttle_unauthenticated_enabled, :throttle_unauthenticated_period_in_seconds, :throttle_unauthenticated_requests_per_period, :throttle_unauthenticated_packages_api_enabled, :throttle_unauthenticated_packages_api_period_in_seconds, :throttle_unauthenticated_packages_api_requests_per_period, :throttle_unauthenticated_files_api_enabled, :throttle_unauthenticated_files_api_period_in_seconds, :throttle_unauthenticated_files_api_requests_per_period, :throttle_unauthenticated_git_http_enabled, :throttle_unauthenticated_git_http_period_in_seconds, :throttle_unauthenticated_git_http_requests_per_period, :throttle_unauthenticated_deprecated_api_enabled, :throttle_unauthenticated_deprecated_api_period_in_seconds, :throttle_unauthenticated_deprecated_api_requests_per_period, :throttle_protected_paths_enabled, :throttle_protected_paths_period_in_seconds, :throttle_protected_paths_requests_per_period, :top_level_group_creation_enabled, :protected_paths_raw, :protected_paths_for_get_request_raw, :time_tracking_limit_to_hours, :two_factor_grace_period, :update_runner_versions_enabled, :unique_ips_limit_enabled, :unique_ips_limit_per_user, :unique_ips_limit_time_window, :usage_ping_enabled, :usage_ping_generation_enabled, :usage_ping_features_enabled, :use_clickhouse_for_analytics, :user_default_external, :user_show_add_ssh_key_message, :user_default_internal_regex, :user_oauth_applications, :version_check_enabled, :diff_max_patch_bytes, :diff_max_files, :diff_max_lines, :commit_email_hostname, :protected_ci_variables, :local_markdown_version, :mailgun_signing_key, :mailgun_events_enabled, :snowplow_collector_hostname, :snowplow_cookie_domain, :snowplow_database_collector_hostname, :snowplow_enabled, :snowplow_app_id, :gitlab_product_usage_data_enabled, :push_event_hooks_limit, :push_event_activities_limit, :custom_http_clone_url_root, :snippet_size_limit, :email_restrictions_enabled, :email_restrictions, :issues_create_limit, :notes_create_limit, :notes_create_limit_allowlist_raw, :members_delete_limit, :raw_blob_request_limit, :project_import_limit, :project_export_limit, :project_download_export_limit, :group_import_limit, :group_export_limit, :group_download_export_limit, :wiki_page_max_content_bytes, :wiki_asciidoc_allow_uri_includes, :container_registry_delete_tags_service_timeout, :rate_limiting_response_text, :package_registry_allow_anyone_to_pull_option, :package_registry_cleanup_policies_worker_capacity, :container_registry_expiration_policies_worker_capacity, :container_registry_cleanup_tags_service_max_list_size, :keep_latest_artifact, :whats_new_variant, :user_deactivation_emails_enabled, :resource_access_token_notify_inherited, :lock_resource_access_token_notify_inherited, :sentry_enabled, :sentry_dsn, :sentry_clientside_dsn, :sentry_environment, :sentry_clientside_traces_sample_rate, :sidekiq_job_limiter_mode, :sidekiq_job_limiter_compression_threshold_bytes, :sidekiq_job_limiter_limit_bytes, :suggest_pipeline_enabled, :enable_artifact_external_redirect_warning_page, :search_rate_limit, :search_rate_limit_unauthenticated, :search_rate_limit_allowlist_raw, :users_get_by_id_limit, :users_get_by_id_limit_allowlist_raw, :runner_token_expiration_interval, :group_runner_token_expiration_interval, :project_runner_token_expiration_interval, :pipeline_limit_per_project_user_sha, :invitation_flow_enforcement, :can_create_group, :can_create_organization, :bulk_import_concurrent_pipeline_batch_limit, :concurrent_relation_batch_export_limit, :relation_export_batch_size, :bulk_import_enabled, :bulk_import_max_download_file_size, :silent_admin_exports_enabled, :allow_contribution_mapping_to_admins, :allow_runner_registration_token, :user_defaults_to_private_profile, :deactivation_email_additional_text, :projects_api_rate_limit_unauthenticated, :group_api_limit, :group_archive_unarchive_api_limit, :group_invited_groups_api_limit, :group_shared_groups_api_limit, :group_projects_api_limit, :groups_api_limit, :project_api_limit, :project_invited_groups_api_limit, :projects_api_limit, :create_organization_api_limit, :user_contributed_projects_api_limit, :user_projects_api_limit, :user_starred_projects_api_limit, :users_api_limit_followers, :users_api_limit_following, :users_api_limit_status, :users_api_limit_ssh_keys, :users_api_limit_ssh_key, :users_api_limit_gpg_keys, :users_api_limit_gpg_key, :gitlab_dedicated_instance, :gitlab_environment_toolkit_instance, :ci_max_includes, :allow_account_deletion, :gitlab_shell_operation_limit, :namespace_aggregation_schedule_lease_duration_in_seconds, :ci_max_total_yaml_size_bytes, :project_jobs_api_rate_limit, :security_txt_content, :allow_project_creation_for_guest_and_below, :downstream_pipeline_trigger_limit_per_project_user_sha, :asciidoc_max_includes, :ai_action_api_rate_limit, :code_suggestions_api_rate_limit, :require_personal_access_token_expiry, :observability_backend_ssl_verification_enabled, :show_migrate_from_jenkins_banner, :ropc_without_client_credentials, :global_search_snippet_titles_enabled, :global_search_users_enabled, :global_search_issues_enabled, :global_search_merge_requests_enabled, :global_search_block_anonymous_searches_enabled, :enable_language_server_restrictions, :minimum_language_server_version, :vscode_extension_marketplace, :vscode_extension_marketplace_enabled, :reindexing_minimum_index_size, :reindexing_minimum_relative_bloat_size, :anonymous_searches_allowed, :git_push_pipeline_limit, :delay_user_account_self_deletion, :resource_usage_limits ].tap do |settings| unless Gitlab.com? settings << :deactivate_dormant_users settings << :deactivate_dormant_users_period settings << :nuget_skip_metadata_url_validation settings << :helm_max_packages_count end end end |
#vscode_extension_marketplace_settings_description ⇒ Object
755 756 757 758 |
# File 'app/helpers/application_settings_helper.rb', line 755 def vscode_extension_marketplace_settings_description # NOTE: description is overridden in EE _('Enable VS Code Extension Marketplace and configure the extensions registry for Web IDE.') end |
#vscode_extension_marketplace_settings_view ⇒ Object
740 741 742 743 744 745 746 747 748 749 750 751 752 753 |
# File 'app/helpers/application_settings_helper.rb', line 740 def vscode_extension_marketplace_settings_view presets = ::WebIde::ExtensionMarketplacePreset.all.map do |preset| preset.to_h.deep_transform_keys { |key| key.to_s.camelize(:lower) } end { title: _('VS Code Extension Marketplace'), description: vscode_extension_marketplace_settings_description, view_model: { presets: presets, initialSettings: @application_setting.vscode_extension_marketplace || {} } } end |