Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Introduction


This section will explain how to configure pin code login in SOAJS. 


Configuration Details


You can configure your Pin Code Login in 23different Places3 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.You can add it to your Key Configuration Per Environment Per Tenant.
  • A default configuration is found in the service configuration file (config.js)


Info
titlePriority
  1. Key Configuration
  2. Custom Registry
  3. Service Configuration



Service ConfigurationEnvironment ConfigurationKey ConfigurationTypeDescription
Typeconfig.js file
Environment RegistryCustom Registry
Service Configuration Per External Key Per Tenant Per Environment

SchemaObject
--Object
Object



pinConfiguration

pinConfiguration

urac


pinConfiguration
charLengthcharLength
charLengthIntegerLength of Pin
characterscharacterscharactersStringcharacters allowed to be used for Pin 



Examples



Ext Key:

Code Block
languagejs
titlePin configuration for Ext key
{
  "urac": {
	"pinConfiguration": {
		"charLength": 4,
		"characters": "0123456789"
	}
  }
}


Custom Registry:

Code Block
languagejs
titlePin configuration for Ext key
{
	"pinConfiguration": {
		"charLength": 4,
		"characters": "0123456789"
	}
}