Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!7469
#3439561
: Add validation constraints to user.flood
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
#3439561
: Add validation constraints to user.flood
issue/drupal-3439561:3439561-add-validation-constraints
into
11.x
Overview
7
Commits
7
Pipelines
8
Changes
1
All threads resolved!
Hide all comments
Open
Kunal Sachdev
requested to merge
issue/drupal-3439561:3439561-add-validation-constraints
into
11.x
1 year ago
Overview
7
Commits
7
Pipelines
8
Changes
1
All threads resolved!
Hide all comments
Expand
0
0
Merge request reports
Compare
11.x
version 7
c14ef333
1 month ago
version 6
b3623527
1 month ago
version 5
8780c515
1 year ago
version 4
d875f404
1 year ago
version 3
11740462
1 year ago
version 2
bb057258
1 year ago
version 1
7b7ced7d
1 year ago
11.x (HEAD)
and
latest version
latest version
79caf100
7 commits,
3 weeks ago
version 7
c14ef333
6 commits,
1 month ago
version 6
b3623527
7 commits,
1 month ago
version 5
8780c515
6 commits,
1 year ago
version 4
d875f404
4 commits,
1 year ago
version 3
11740462
3 commits,
1 year ago
version 2
bb057258
2 commits,
1 year ago
version 1
7b7ced7d
1 commit,
1 year ago
1 file
+
14
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
core/modules/user/config/schema/user.schema.yml
+
14
−
0
Options
@@ -105,6 +105,8 @@ user.mail:
user.flood
:
type
:
config_object
label
:
'
User
flood
settings'
constraints
:
FullyValidatable
:
~
mapping
:
uid_only
:
type
:
boolean
@@ -112,15 +114,27 @@ user.flood:
ip_limit
:
type
:
integer
label
:
'
IP
limit'
constraints
:
Range
:
min
:
0
ip_window
:
type
:
integer
label
:
'
IP
window'
constraints
:
Range
:
min
:
0
user_limit
:
type
:
integer
label
:
'
User
limit'
constraints
:
Range
:
min
:
0
user_window
:
type
:
integer
label
:
'
User
window'
constraints
:
Range
:
min
:
0
user.role.*
:
type
:
config_entity
Loading