2021-03-11 19:13:27 +05:30
|
|
|
= form_for @application_setting, url: network_admin_application_settings_path(anchor: 'js-note-limits-settings'), html: { class: 'fieldset-form' } do |f|
|
|
|
|
= form_errors(@application_setting)
|
|
|
|
|
|
|
|
%fieldset
|
|
|
|
.form-group
|
2021-11-11 11:23:49 +05:30
|
|
|
= f.label :notes_create_limit, _('Maximum requests per minute'), class: 'label-bold'
|
2021-03-11 19:13:27 +05:30
|
|
|
= f.number_field :notes_create_limit, class: 'form-control gl-form-input'
|
|
|
|
.form-group
|
2021-11-11 11:23:49 +05:30
|
|
|
= f.label :notes_create_limit_allowlist, _('Users to exclude from the rate limit'), class: 'label-bold'
|
2021-03-11 19:13:27 +05:30
|
|
|
= f.text_area :notes_create_limit_allowlist_raw, placeholder: 'username1, username2', class: 'form-control gl-form-input', rows: 5
|
2021-11-11 11:23:49 +05:30
|
|
|
.form-text.text-muted
|
2022-04-04 11:22:00 +05:30
|
|
|
= _('List of users allowed to exceed the rate limit.')
|
2021-11-11 11:23:49 +05:30
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
= f.submit _('Save changes'), class: "gl-button btn btn-confirm", data: { qa_selector: 'save_changes_button' }
|