Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_users_api_limits.html.haml « application_settings « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f2edb81141d28398a3d5aa44a5eeca845ce966dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
= form_for @application_setting, url: network_admin_application_settings_path(anchor: 'js-users-api-limits-settings'), html: { class: 'fieldset-form' } do |f|
  = form_errors(@application_setting, pajamas_alert: true)

  %fieldset
    .form-group
      = f.label :users_get_by_id_limit, _('Maximum requests per 10 minutes per user'), class: 'label-bold'
      = f.number_field :users_get_by_id_limit, class: 'form-control gl-form-input'
    .form-group
      = f.label :users_get_by_id_limit_allowlist_raw, _('Users to exclude from the rate limit'), class: 'label-bold'
      = f.text_area :users_get_by_id_limit_allowlist_raw, class: 'form-control gl-form-input', rows: 5, aria: { describedBy: 'users-api-limit-users-allowlist-field-description' }
      .form-text.text-muted{ id: 'users-api-limit-users-allowlist-field-description' }
        = _('List of users who are allowed to exceed the rate limit. Example: username1, username2')

  = f.submit _('Save changes'), class: "gl-button btn btn-confirm", data: { qa_selector: 'save_changes_button' }