Commit 75fea12c authored by Illya Klymov's avatar Illya Klymov

Merge branch 'fix-typo-issues-limit-settings-template' into 'master'

Update issue limits template to use minutes

See merge request gitlab-org/gitlab!34254
parents 3b56ecf8 e3a20512
......@@ -3,7 +3,7 @@
%fieldset
.form-group
= f.label :issues_create_limit, 'Max requests per second per user', class: 'label-bold'
= f.label :issues_create_limit, 'Max requests per minute per user', class: 'label-bold'
= f.number_field :issues_create_limit, class: 'form-control'
= f.submit 'Save changes', class: "btn btn-success", data: { qa_selector: 'save_changes_button' }
---
title: Update issue limits template to use minutes
merge_request: 34254
author:
type: fixed
---
type: reference
stage: Plan
group: Project Management
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#designated-technical-writers
---
# Rate limits on issue creation
......@@ -14,7 +17,7 @@ For example, requests using the
[Projects::IssuesController#create](https://gitlab.com/gitlab-org/gitlab/raw/master/app/controllers/projects/issues_controller.rb)
action exceeding a rate of 300 per minute are blocked. Access to the endpoint is allowed after one minute.
![Rate limits on issues creation](img/rate_limit_on_issues_creation.png)
![Rate limits on issues creation](img/rate_limit_on_issues_creation_v13_1.png)
This limit is:
......
......@@ -405,7 +405,7 @@ describe 'Admin updates settings', :clean_gitlab_redis_shared_state, :do_not_moc
visit network_admin_application_settings_path
page.within('.as-issue-limits') do
fill_in 'Max requests per second per user', with: 0
fill_in 'Max requests per minute per user', with: 0
click_button 'Save changes'
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment