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 Places.

  • 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)



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"
	}
}