summaryrefslogtreecommitdiff
path: root/app/views/admin/application_settings/_account_and_limit.html.haml
blob: f40dd347eb3c0c884ae4c59b13400c6b763c1eed (plain)
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
= form_for @application_setting, url: admin_application_settings_path, html: { class: 'fieldset-form' } do |f|
  = form_errors(@application_setting)

  %fieldset
    .form-group.row
      .offset-sm-2.col-sm-10
        .form-check
          = f.label :gravatar_enabled do
            = f.check_box :gravatar_enabled
            Gravatar enabled
    .form-group.row
      = f.label :default_projects_limit, class: 'col-form-label col-sm-2'
      .col-sm-10
        = f.number_field :default_projects_limit, class: 'form-control'
    .form-group.row
      = f.label :max_attachment_size, 'Maximum attachment size (MB)', class: 'col-form-label col-sm-2'
      .col-sm-10
        = f.number_field :max_attachment_size, class: 'form-control'
    .form-group.row
      = f.label :session_expire_delay, 'Session duration (minutes)', class: 'col-form-label col-sm-2'
      .col-sm-10
        = f.number_field :session_expire_delay, class: 'form-control'
        %span.form-text.text-muted#session_expire_delay_help_block GitLab restart is required to apply changes
    .form-group.row
      = f.label :user_oauth_applications, 'User OAuth applications', class: 'col-form-label col-sm-2'
      .col-sm-10
        .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.row
      = f.label :user_default_external, 'New users set to external', class: 'col-form-label col-sm-2'
      .col-sm-10
        .form-check
          = f.label :user_default_external do
            = f.check_box :user_default_external
            Newly registered users will by default be external

  = f.submit 'Save changes', class: 'btn btn-success'