Introduction
URAC micro-service V3 configuration variables that are needed and can be customized
...
Name | Type | Description | Example |
---|---|---|---|
validateJoin | boolean | This configuration controllers the status of a user after joining. aka ('pendingJoin' : 'active') | true |
3. Mail Configuration
...
Code Block | ||||
---|---|---|---|---|
| ||||
{ "links": {...}, // this object to control the links in the emails "mail": { // this object to control the content of the emails "joinaddUser": {...}, // Join - mail content configuration "forgotPassword"changeEmail": {...}, // Forgot password mail - content configuration"changePin": {...}, "addUserchangeUserStatus": {...}, // Add User - mail content configuration "changeUserStatus"forgotPassword": {...}, // Change User Status - mail content configuration"invitePin": {...}, "changeEmailjoin": {...}, // Change Email - mail content configuration"resetPin": {...} } } |
4. Mail token configuration
...
Name | Local Configuration (Default) config.js | Registry Configuration (Per Environment) req.soajs.registry | Tenant Configuration (Per Tenant Per Environment) | |
---|---|---|---|---|
Settings | Custom | |||
pinConfiguration | 1234 | ✓ | ✓ | |
model¹ | "mongo" | ✓ | ||
hashIterations | 24 | ✓ | ||
seedLength | 12 | ✓ |
model¹: We currently only support mongo models.
...