mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-05-02 17:37:58 +02:00
Add Note field to user traits; Enforce max length restrictions on email, firstname, lastname, and note fields
This commit is contained in:
@@ -12,6 +12,7 @@
|
||||
"format": "email",
|
||||
"title": "E-Mail",
|
||||
"minLength": 6,
|
||||
"maxLength": 100,
|
||||
"ory.sh/kratos": {
|
||||
"credentials": {
|
||||
"password": {
|
||||
@@ -25,16 +26,19 @@
|
||||
},
|
||||
"firstName": {
|
||||
"type": "string",
|
||||
"title": "First Name"
|
||||
"title": "First Name",
|
||||
"maxLength": 100
|
||||
},
|
||||
"lastName": {
|
||||
"type": "string",
|
||||
"title": "Last Name"
|
||||
"title": "Last Name",
|
||||
"maxLength": 100
|
||||
},
|
||||
"status": {
|
||||
"note": {
|
||||
"type": "string",
|
||||
"title": "Status"
|
||||
}
|
||||
"title": "Note",
|
||||
"maxLength": 100
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"email"
|
||||
|
||||
Reference in New Issue
Block a user