File: general.html.haml

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (111 lines) | stat: -rw-r--r-- 5,166 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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
- breadcrumb_title _("General")
- page_title _("General")
- add_page_specific_style 'page_bundles/settings'
- @force_desktop_expanded_sidebar = true

%div{ data: { event_tracking_load: 'true', event_tracking: 'view_admin_application_settings_general_pageload' } }

= render ::Layouts::SettingsBlockComponent.new(_('Visibility and access controls'),
  id: 'js-visibility-settings',
  testid: 'admin-visibility-access-settings',
  expanded: expanded_by_default?) do |c|
  - c.with_description do
    = s_('AdminSettings|Set visibility of project contents and configure Git access protocols.')
  - c.with_body do
    = render 'visibility_and_access'

= render ::Layouts::SettingsBlockComponent.new(_('Account and limit'),
  id: 'js-account-settings',
  testid: 'account-and-limit-settings-content',
  expanded: expanded_by_default?) do |c|
  - c.with_description do
    = _('Set projects and maximum size limits, session duration, user options, and check feature availability for namespace plan.')
  - c.with_body do
    = render 'account_and_limit'

= render_if_exists 'admin/application_settings/ai_powered'

= render ::Layouts::SettingsBlockComponent.new(_('Import and export settings'),
  id: 'js-import-export-settings',
  testid: 'admin-import-export-settings',
  expanded: expanded_by_default?) do |c|
  - c.with_description do
    = _('Configure import sources and settings related to import and export features.')
  - c.with_body do
    = render 'import_and_export'

= render ::Layouts::SettingsBlockComponent.new(_('Diff limits'),
  id: 'js-merge-request-settings',
  expanded: expanded_by_default?) do |c|
  - c.with_description do
    = _('Set size limits for displaying diffs in the browser.')
  - c.with_body do
    = render 'diff_limits'

= render ::Layouts::SettingsBlockComponent.new(_('Sign-up restrictions'),
  id: 'js-signup-settings',
  testid: 'sign-up-restrictions-settings-content',
  expanded: expanded_by_default?) do |c|
  - c.with_description do
    = _('Configure the way a user creates a new account.')
  - c.with_body do
    = render 'signup'

= render ::Layouts::SettingsBlockComponent.new(_('Sign-in restrictions'),
  id: 'js-signin-settings',
  testid: 'signin-settings',
  expanded: expanded_by_default?) do |c|
  - c.with_description do
    = _('Set sign-in restrictions for all users.')
    = link_to _('Learn more.'), help_page_path('administration/settings/sign_in_restrictions.md'), target: '_blank', rel: 'noopener noreferrer'
  - c.with_body do
    = render 'signin'

= render ::Layouts::SettingsBlockComponent.new(_('Terms of Service and Privacy Policy'),
  id: 'js-terms-settings',
  testid: 'terms-settings',
  expanded: expanded_by_default?) do |c|
  - c.with_description do
    = _('Add a Terms of Service agreement and Privacy Policy for users of this GitLab instance.')
    = link_to _('Learn more.'), help_page_path('administration/settings/terms.md'), target: '_blank', rel: 'noopener noreferrer'
  - c.with_body do
    = render 'terms'

= render 'admin/application_settings/external_authorization_service_form', expanded: expanded_by_default?
= render_if_exists 'admin/application_settings/microsoft_application'
= render_if_exists 'admin/application_settings/scim'

= render ::Layouts::SettingsBlockComponent.new(_('Web terminal'),
  id: 'js-terminal-settings',
  testid: 'terminal-settings',
  expanded: expanded_by_default?) do |c|
  - c.with_description do
    = _('Set the maximum session time for a web terminal.')
    = link_to _('How do I use a web terminal?'), help_page_path('ci/environments/index.md', anchor: 'web-terminals-deprecated'), target: '_blank', rel: 'noopener noreferrer'
  - c.with_body do
    = render 'terminal'

= render_if_exists 'admin/application_settings/maintenance_mode_settings_form'
= render 'admin/application_settings/silent_mode_settings_form'
= render 'admin/application_settings/gitpod'
= render 'admin/application_settings/kroki'
= render 'admin/application_settings/mailgun'
= render 'admin/application_settings/plantuml'
= render 'admin/application_settings/diagramsnet'
= render 'admin/application_settings/sourcegraph'
-# this partial is from JiHu, see details in https://jihulab.com/gitlab-cn/gitlab/-/merge_requests/417
= render_if_exists 'admin/application_settings/dingtalk_integration'
-# this partial is from JiHu, see details in https://jihulab.com/gitlab-cn/gitlab/-/merge_requests/640
= render_if_exists 'admin/application_settings/feishu_integration'
= render 'admin/application_settings/third_party_offers'
= render 'admin/application_settings/snowplow'
= render_if_exists 'admin/application_settings/product_analytics'
= render 'admin/application_settings/error_tracking' if Feature.enabled?(:gitlab_error_tracking)
= render 'admin/application_settings/eks'
= render 'admin/application_settings/floc'
= render_if_exists 'admin/application_settings/add_license'
= render_if_exists 'admin/application_settings/cluster_agents'
= render 'admin/application_settings/jira_connect'
= render 'admin/application_settings/slack'
= render 'admin/application_settings/security_txt', expanded: expanded_by_default?
= render_if_exists 'admin/application_settings/analytics'