Introduction
This section will explain how to configure pin code login in SOAJS.
Configuration Details
You can configure your Pin Code Login in 3 different places.
- You can add it to your Key Configuration Per Environment Per Tenant.
- You can add it as a Custom Registry and Plug it in.
- A default configuration is found in the service configuration file (config.js)
Info | ||
---|---|---|
| ||
|
Service Configuration | Environment Configuration | Key Configuration | Type | Description | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Type | config.js file | Environment Registry | Custom Registry | Service Configuration Per External Key Per Tenant Per Environment | ||||||||
Schema | Object | -- | Object | Object | ||||||||
pinConfiguration | pinConfiguration | urac | ||||||||||
pinConfiguration | ||||||||||||
charLength | charLength | charLength | Integer | Length of Pin | ||||||||
characters | characters | characters | String | characters allowed to be used for Pin |
Examples
Ext Key:
Code Block | ||||
---|---|---|---|---|
| ||||
{
"urac": {
"pinConfiguration": {
"charLength": 4,
"characters": "0123456789"
}
}
} |
Custom Registry:
Code Block | ||||
---|---|---|---|---|
| ||||
{
"pinConfiguration": {
"charLength": 4,
"characters": "0123456789"
}
} |