Skip to content

Commit

Permalink
Merge branch 'develop' into feat/proxy-component
Browse files Browse the repository at this point in the history
  • Loading branch information
hetangmodi-crest authored Dec 16, 2024
2 parents cb55b05 + cdd3f31 commit e230928
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,15 @@
"field": "api_key",
"help": "API key",
"required": true,
"encrypted": true
"encrypted": true,
"validators": [
{
"type": "string",
"errorMsg": "Length of API key should be between 1 and 50",
"minLength": 1,
"maxLength": 50
}
]
}
],
"title": "Accounts"
Expand Down Expand Up @@ -112,7 +120,15 @@
},
"help": "Account to use for this input.",
"field": "account",
"required": true
"required": true,
"validators": [
{
"type": "string",
"errorMsg": "Length of account name should be between 1 and 100",
"minLength": 1,
"maxLength": 100
}
]
}
],
"inputHelperModule": "{{addon_input_name}}_helper",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,15 @@
"field": "api_key",
"help": "API key",
"required": true,
"encrypted": true
"encrypted": true,
"validators": [
{
"type": "string",
"errorMsg": "Length of API key should be between 1 and 50",
"minLength": 1,
"maxLength": 50
}
]
}
],
"title": "Accounts"
Expand Down Expand Up @@ -108,7 +116,15 @@
},
"help": "Account to use for this input.",
"field": "account",
"required": true
"required": true,
"validators": [
{
"type": "string",
"errorMsg": "Length of account name should be between 1 and 100",
"minLength": 1,
"maxLength": 100
}
]
}
],
"inputHelperModule": "demo_input_helper",
Expand Down

0 comments on commit e230928

Please sign in to comment.