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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
1,012 B
Text
Raw Normal View History

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|
2022-07-23 23:45:48 +05:30
= form_errors(@application_setting, pajamas_alert: true)
2021-03-11 19:13:27 +05:30
%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'
2022-06-21 17:19:12 +05:30
= f.text_area :notes_create_limit_allowlist_raw, class: 'form-control gl-form-input', rows: 5, aria: { describedBy: 'note-create-limits-allowlist-field-description' }
.form-text.text-muted{ id: 'note-create-limits-allowlist-field-description' }
2022-07-16 23:28:13 +05:30
= _('List of users who are allowed to exceed the rate limit. Example: username1, username2')
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' }