mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-30 06:42:25 -05:00
Fix - CloneUserDTO
This commit is contained in:
parent
3355718884
commit
fdaa5b61bd
1 changed files with 18 additions and 3 deletions
|
|
@ -608,14 +608,29 @@
|
||||||
"CloneUserDTO": {
|
"CloneUserDTO": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"sourceUsername": {
|
"username": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "Source username to clone from",
|
"description": "Source username to clone from",
|
||||||
"required": true
|
"required": true
|
||||||
},
|
},
|
||||||
"targetUsername": {
|
"newUsername": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "Target username to clone to",
|
"description": "New username to clone to",
|
||||||
|
"required": true
|
||||||
|
},
|
||||||
|
"displayName": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Display name for the cloned user",
|
||||||
|
"required": true
|
||||||
|
},
|
||||||
|
"password": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Password for the new user",
|
||||||
|
"required": true
|
||||||
|
},
|
||||||
|
"confirmPassword": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Password confirmation",
|
||||||
"required": true
|
"required": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue