debian-mirror-gitlab/app/views/admin/application_settings/_account_and_limit.html.haml

34 lines
1.7 KiB
Text
Raw Normal View History

2018-11-08 19:23:39 +05:30
= form_for @application_setting, url: admin_application_settings_path, html: { class: 'fieldset-form' } do |f|
2018-05-09 12:01:36 +05:30
= form_errors(@application_setting)
%fieldset
.form-group
2018-11-08 19:23:39 +05:30
.form-check
= f.check_box :gravatar_enabled, class: 'form-check-input'
= f.label :gravatar_enabled, class: 'form-check-label' do
Gravatar enabled
2018-05-09 12:01:36 +05:30
.form-group
2018-11-08 19:23:39 +05:30
= f.label :default_projects_limit, class: 'label-light'
= f.number_field :default_projects_limit, class: 'form-control'
2018-05-09 12:01:36 +05:30
.form-group
2018-11-08 19:23:39 +05:30
= f.label :max_attachment_size, 'Maximum attachment size (MB)', class: 'label-light'
= f.number_field :max_attachment_size, class: 'form-control'
2018-05-09 12:01:36 +05:30
.form-group
2018-11-08 19:23:39 +05:30
= f.label :session_expire_delay, 'Session duration (minutes)', class: 'label-light'
= 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
2018-05-09 12:01:36 +05:30
.form-group
2018-11-08 19:23:39 +05:30
= f.label :user_oauth_applications, 'User OAuth applications', class: 'label-light'
.form-check
= f.check_box :user_oauth_applications, class: 'form-check-input'
= f.label :user_oauth_applications, class: 'form-check-label' do
Allow users to register any application to use GitLab as an OAuth provider
2018-05-09 12:01:36 +05:30
.form-group
2018-11-08 19:23:39 +05:30
= f.label :user_default_external, 'New users set to external', class: 'label-light'
.form-check
= f.check_box :user_default_external, class: 'form-check-input'
= f.label :user_default_external, class: 'form-check-label' do
Newly registered users will by default be external
2018-05-09 12:01:36 +05:30
= f.submit 'Save changes', class: 'btn btn-success'