diff options
author | Clement Ho <ClemMakesApps@gmail.com> | 2018-04-11 13:05:57 -0500 |
---|---|---|
committer | Clement Ho <ClemMakesApps@gmail.com> | 2018-04-11 13:05:57 -0500 |
commit | df8aa61a94b8e70526fb78aed75ada1e390c7ce1 (patch) | |
tree | 0c0d0183cc38bbd815eb1d3c2f271d2481d41589 /app/views/admin | |
parent | b95d76d217ad5a99093c2e10ac4a9289200dad48 (diff) | |
download | gitlab-ce-df8aa61a94b8e70526fb78aed75ada1e390c7ce1.tar.gz |
[skip ci] Convert .checkbox to .form-check
Diffstat (limited to 'app/views/admin')
23 files changed, 41 insertions, 41 deletions
diff --git a/app/views/admin/application_settings/_account_and_limit.html.haml b/app/views/admin/application_settings/_account_and_limit.html.haml index dd86c9ed2eb..76e84e89b92 100644 --- a/app/views/admin/application_settings/_account_and_limit.html.haml +++ b/app/views/admin/application_settings/_account_and_limit.html.haml @@ -4,7 +4,7 @@ %fieldset .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :gravatar_enabled do = f.check_box :gravatar_enabled Gravatar enabled @@ -24,14 +24,14 @@ .form-group = f.label :user_oauth_applications, 'User OAuth applications', class: 'control-label col-sm-2' .col-sm-10 - .checkbox + .form-check = f.label :user_oauth_applications do = f.check_box :user_oauth_applications Allow users to register any application to use GitLab as an OAuth provider .form-group = f.label :user_default_external, 'New users set to external', class: 'control-label col-sm-2' .col-sm-10 - .checkbox + .form-check = f.label :user_default_external do = f.check_box :user_default_external Newly registered users will by default be external diff --git a/app/views/admin/application_settings/_background_jobs.html.haml b/app/views/admin/application_settings/_background_jobs.html.haml index 8198a822a10..c6c484e193a 100644 --- a/app/views/admin/application_settings/_background_jobs.html.haml +++ b/app/views/admin/application_settings/_background_jobs.html.haml @@ -8,7 +8,7 @@ to take effect. .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :sidekiq_throttling_enabled do = f.check_box :sidekiq_throttling_enabled Enable Sidekiq Job Throttling diff --git a/app/views/admin/application_settings/_ci_cd.html.haml b/app/views/admin/application_settings/_ci_cd.html.haml index b4d2a789df0..03e8a213d06 100644 --- a/app/views/admin/application_settings/_ci_cd.html.haml +++ b/app/views/admin/application_settings/_ci_cd.html.haml @@ -4,7 +4,7 @@ %fieldset .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :auto_devops_enabled do = f.check_box :auto_devops_enabled Enabled Auto DevOps (Beta) for projects by default @@ -19,7 +19,7 @@ = s_("AdminSettings|Specify a domain to use by default for every project's Auto Review Apps and Auto Deploy stages.") .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :shared_runners_enabled do = f.check_box :shared_runners_enabled Enable shared runners for new projects diff --git a/app/views/admin/application_settings/_email.html.haml b/app/views/admin/application_settings/_email.html.haml index 6c89f1c4e98..e1a68894fa8 100644 --- a/app/views/admin/application_settings/_email.html.haml +++ b/app/views/admin/application_settings/_email.html.haml @@ -4,7 +4,7 @@ %fieldset .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :email_author_in_body do = f.check_box :email_author_in_body Include author name in notification email body @@ -14,7 +14,7 @@ merge request or comment in the email body instead. .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :html_emails_enabled do = f.check_box :html_emails_enabled Enable HTML emails diff --git a/app/views/admin/application_settings/_help_page.html.haml b/app/views/admin/application_settings/_help_page.html.haml index 3bc101ddf04..45051b25f9b 100644 --- a/app/views/admin/application_settings/_help_page.html.haml +++ b/app/views/admin/application_settings/_help_page.html.haml @@ -9,7 +9,7 @@ .help-block Markdown enabled .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :help_page_hide_commercial_content do = f.check_box :help_page_hide_commercial_content Hide marketing-related entries from help diff --git a/app/views/admin/application_settings/_influx.html.haml b/app/views/admin/application_settings/_influx.html.haml index a173fd38a9c..af5c936b6e0 100644 --- a/app/views/admin/application_settings/_influx.html.haml +++ b/app/views/admin/application_settings/_influx.html.haml @@ -10,7 +10,7 @@ = link_to icon('question-circle'), help_page_path('administration/monitoring/performance/introduction') .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :metrics_enabled do = f.check_box :metrics_enabled Enable InfluxDB Metrics diff --git a/app/views/admin/application_settings/_ip_limits.html.haml b/app/views/admin/application_settings/_ip_limits.html.haml index b83ffc375d9..5c71724855d 100644 --- a/app/views/admin/application_settings/_ip_limits.html.haml +++ b/app/views/admin/application_settings/_ip_limits.html.haml @@ -4,7 +4,7 @@ %fieldset .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :throttle_unauthenticated_enabled do = f.check_box :throttle_unauthenticated_enabled Enable unauthenticated request rate limit @@ -20,7 +20,7 @@ = f.number_field :throttle_unauthenticated_period_in_seconds, class: 'form-control' .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :throttle_authenticated_api_enabled do = f.check_box :throttle_authenticated_api_enabled Enable authenticated API request rate limit @@ -36,7 +36,7 @@ = f.number_field :throttle_authenticated_api_period_in_seconds, class: 'form-control' .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :throttle_authenticated_web_enabled do = f.check_box :throttle_authenticated_web_enabled Enable authenticated web request rate limit diff --git a/app/views/admin/application_settings/_koding.html.haml b/app/views/admin/application_settings/_koding.html.haml index 17358cf775b..9a59c711f0b 100644 --- a/app/views/admin/application_settings/_koding.html.haml +++ b/app/views/admin/application_settings/_koding.html.haml @@ -4,7 +4,7 @@ %fieldset .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :koding_enabled do = f.check_box :koding_enabled Enable Koding diff --git a/app/views/admin/application_settings/_logging.html.haml b/app/views/admin/application_settings/_logging.html.haml index 44a11ddc120..09a7a977468 100644 --- a/app/views/admin/application_settings/_logging.html.haml +++ b/app/views/admin/application_settings/_logging.html.haml @@ -4,7 +4,7 @@ %fieldset .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :sentry_enabled do = f.check_box :sentry_enabled Enable Sentry @@ -20,7 +20,7 @@ .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :clientside_sentry_enabled do = f.check_box :clientside_sentry_enabled Enable Clientside Sentry diff --git a/app/views/admin/application_settings/_outbound.html.haml b/app/views/admin/application_settings/_outbound.html.haml index d10f609006d..fdd549cd4a2 100644 --- a/app/views/admin/application_settings/_outbound.html.haml +++ b/app/views/admin/application_settings/_outbound.html.haml @@ -4,7 +4,7 @@ %fieldset .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :allow_local_requests_from_hooks_and_services do = f.check_box :allow_local_requests_from_hooks_and_services Allow requests to the local network from hooks and services diff --git a/app/views/admin/application_settings/_pages.html.haml b/app/views/admin/application_settings/_pages.html.haml index b28ecf9a039..dfad06cd765 100644 --- a/app/views/admin/application_settings/_pages.html.haml +++ b/app/views/admin/application_settings/_pages.html.haml @@ -9,7 +9,7 @@ .help-block 0 for unlimited .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :pages_domain_verification_enabled do = f.check_box :pages_domain_verification_enabled Require users to prove ownership of custom domains diff --git a/app/views/admin/application_settings/_performance.html.haml b/app/views/admin/application_settings/_performance.html.haml index 01d5a31aa9f..02b56d99ebe 100644 --- a/app/views/admin/application_settings/_performance.html.haml +++ b/app/views/admin/application_settings/_performance.html.haml @@ -4,7 +4,7 @@ %fieldset .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :authorized_keys_enabled do = f.check_box :authorized_keys_enabled Write to "authorized_keys" file diff --git a/app/views/admin/application_settings/_performance_bar.html.haml b/app/views/admin/application_settings/_performance_bar.html.haml index 5344f030c97..41f98ce9886 100644 --- a/app/views/admin/application_settings/_performance_bar.html.haml +++ b/app/views/admin/application_settings/_performance_bar.html.haml @@ -4,7 +4,7 @@ %fieldset .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :performance_bar_enabled do = f.check_box :performance_bar_enabled Enable the Performance Bar diff --git a/app/views/admin/application_settings/_plantuml.html.haml b/app/views/admin/application_settings/_plantuml.html.haml index 56764b3fb81..e2df58c718c 100644 --- a/app/views/admin/application_settings/_plantuml.html.haml +++ b/app/views/admin/application_settings/_plantuml.html.haml @@ -4,7 +4,7 @@ %fieldset .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :plantuml_enabled do = f.check_box :plantuml_enabled Enable PlantUML diff --git a/app/views/admin/application_settings/_prometheus.html.haml b/app/views/admin/application_settings/_prometheus.html.haml index 48745db2991..1e0742ac8e6 100644 --- a/app/views/admin/application_settings/_prometheus.html.haml +++ b/app/views/admin/application_settings/_prometheus.html.haml @@ -13,7 +13,7 @@ = link_to icon('question-circle'), help_page_path('administration/monitoring/prometheus/index') .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :prometheus_metrics_enabled do = f.check_box :prometheus_metrics_enabled Enable Prometheus Metrics diff --git a/app/views/admin/application_settings/_repository_check.html.haml b/app/views/admin/application_settings/_repository_check.html.haml index f33769b23c2..4092233fda7 100644 --- a/app/views/admin/application_settings/_repository_check.html.haml +++ b/app/views/admin/application_settings/_repository_check.html.haml @@ -6,7 +6,7 @@ %h4 Repository checks .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :repository_checks_enabled do = f.check_box :repository_checks_enabled Enable Repository Checks @@ -24,7 +24,7 @@ %h4 Housekeeping .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :housekeeping_enabled do = f.check_box :housekeeping_enabled Enable automatic repository housekeeping (git repack, git gc) @@ -33,7 +33,7 @@ repository access on your GitLab server will become slower and your repositories will use more disk space. We recommend to always leave this enabled. - .checkbox + .form-check = f.label :housekeeping_bitmaps_enabled do = f.check_box :housekeeping_bitmaps_enabled Enable Git pack file bitmap creation diff --git a/app/views/admin/application_settings/_repository_storage.html.haml b/app/views/admin/application_settings/_repository_storage.html.haml index ac31977e1a9..5927eff5e1d 100644 --- a/app/views/admin/application_settings/_repository_storage.html.haml +++ b/app/views/admin/application_settings/_repository_storage.html.haml @@ -5,7 +5,7 @@ .sub-section .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :hashed_storage_enabled do = f.check_box :hashed_storage_enabled Create new projects using hashed storage paths diff --git a/app/views/admin/application_settings/_signin.html.haml b/app/views/admin/application_settings/_signin.html.haml index 864e64b5fa9..1504f61a66d 100644 --- a/app/views/admin/application_settings/_signin.html.haml +++ b/app/views/admin/application_settings/_signin.html.haml @@ -4,7 +4,7 @@ %fieldset .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :password_authentication_enabled_for_web do = f.check_box :password_authentication_enabled_for_web Password authentication enabled for web interface @@ -12,7 +12,7 @@ When disabled, an external authentication provider must be used. .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :password_authentication_enabled_for_git do = f.check_box :password_authentication_enabled_for_git Password authentication enabled for Git over HTTP(S) @@ -31,7 +31,7 @@ .form-group = f.label :two_factor_authentication, 'Two-factor authentication', class: 'control-label col-sm-2' .col-sm-10 - .checkbox + .form-check = f.label :require_two_factor_authentication do = f.check_box :require_two_factor_authentication Require all users to setup Two-factor authentication diff --git a/app/views/admin/application_settings/_signup.html.haml b/app/views/admin/application_settings/_signup.html.haml index 85f311dd894..d919644fab9 100644 --- a/app/views/admin/application_settings/_signup.html.haml +++ b/app/views/admin/application_settings/_signup.html.haml @@ -4,13 +4,13 @@ %fieldset .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :signup_enabled do = f.check_box :signup_enabled Sign-up enabled .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :send_user_confirmation_email do = f.check_box :send_user_confirmation_email Send confirmation email on sign-up @@ -22,7 +22,7 @@ .form-group = f.label :domain_blacklist_enabled, 'Domain Blacklist', class: 'control-label col-sm-2' .col-sm-10 - .checkbox + .form-check = f.label :domain_blacklist_enabled do = f.check_box :domain_blacklist_enabled Enable domain blacklist for sign ups diff --git a/app/views/admin/application_settings/_spam.html.haml b/app/views/admin/application_settings/_spam.html.haml index 25e89097dfe..bf9b9dcf915 100644 --- a/app/views/admin/application_settings/_spam.html.haml +++ b/app/views/admin/application_settings/_spam.html.haml @@ -4,7 +4,7 @@ %fieldset .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :recaptcha_enabled do = f.check_box :recaptcha_enabled Enable reCAPTCHA @@ -25,7 +25,7 @@ .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :akismet_enabled do = f.check_box :akismet_enabled Enable Akismet @@ -41,7 +41,7 @@ .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :unique_ips_limit_enabled do = f.check_box :unique_ips_limit_enabled Limit sign in from multiple ips diff --git a/app/views/admin/application_settings/_usage.html.haml b/app/views/admin/application_settings/_usage.html.haml index 7684e2cfdd1..9c4ac703af5 100644 --- a/app/views/admin/application_settings/_usage.html.haml +++ b/app/views/admin/application_settings/_usage.html.haml @@ -4,7 +4,7 @@ %fieldset .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :version_check_enabled do = f.check_box :version_check_enabled Enable version check @@ -15,7 +15,7 @@ .form-group .col-sm-offset-2.col-sm-10 - can_be_configured = @application_setting.usage_ping_can_be_configured? - .checkbox + .form-check = f.label :usage_ping_enabled do = f.check_box :usage_ping_enabled, disabled: !can_be_configured Enable usage ping diff --git a/app/views/admin/application_settings/_visibility_and_access.html.haml b/app/views/admin/application_settings/_visibility_and_access.html.haml index cbc779548f6..f2080b3d4ba 100644 --- a/app/views/admin/application_settings/_visibility_and_access.html.haml +++ b/app/views/admin/application_settings/_visibility_and_access.html.haml @@ -24,7 +24,7 @@ - checkbox_name = 'application_setting[restricted_visibility_levels][]' = hidden_field_tag(checkbox_name) - restricted_level_checkboxes('restricted-visibility-help', checkbox_name).each do |level| - .checkbox + .form-check = level %span.help-block#restricted-visibility-help Selected levels cannot be used by non-admin users for projects or snippets. @@ -33,7 +33,7 @@ = f.label :import_sources, class: 'control-label col-sm-2' .col-sm-10 - import_sources_checkboxes('import-sources-help').each do |source| - .checkbox= source + .form-check= source %span.help-block#import-sources-help Enabled sources for code import during project creation. OmniAuth must be configured for GitHub = link_to "(?)", help_page_path("integration/github") @@ -44,7 +44,7 @@ .form-group .col-sm-offset-2.col-sm-10 - .checkbox + .form-check = f.label :project_export_enabled do = f.check_box :project_export_enabled Project export enabled diff --git a/app/views/admin/hooks/_form.html.haml b/app/views/admin/hooks/_form.html.haml index e03c9bc0466..b7e57a1cbfd 100644 --- a/app/views/admin/hooks/_form.html.haml +++ b/app/views/admin/hooks/_form.html.haml @@ -46,7 +46,7 @@ This URL will be triggered when a merge request is created/updated/merged .form-group = form.label :enable_ssl_verification, 'SSL verification', class: 'label-light checkbox' - .checkbox + .form-check = form.label :enable_ssl_verification do = form.check_box :enable_ssl_verification %strong Enable SSL verification |