Enabling "4 eyes" mode
In Web Administration, you can activate, for one or several menus, a setup management mode based on "4 eyes" principle.
This principle implies that all addition, modification or deletion tasks are initiated, validated and approved by two different people.
"4 eyes" mode is disabled by default. To enable it, you must first edit the SRA and site configuration files.
SRA configuration file: Sage.Eb.Admin.Rest.Api.exe.config
For MASTER tenant, the following instructions must be added:
<!-- Four Eyes Principle -->
<add key="FourEyesPrinciple" value="true" />

<!-- Tenant MASTER-->
<add key="DsnType" value="" />
<add key="Dsn" value="" />
<add key="OlbUrl" value="" />
<add key="ComComputerName" value="" />
<add key="UmapiWorkGroup" value="" />
<!-- Four Eyes Principle -->
<add key="FourEyesPrinciple" value="true" />
In multi-tenant configuration, for each tenant other than MASTER for which you want to activate the "4 eyes" mode, add the following instructions:
<!-- Four Eyes Principle -->
<add key="FourEyesPrinciple[TENANT02]" value="true" />

<!-- Tenant TENANT02-->
<add key="DsnType[TENANT02]" value="" />
<add key="Dsn[TENANT02]" value="" />
<add key="OlbUrl[TENANT02]" value="" />
<add key="ComComputerName[TENANT02]" value="" />
<add key="UmapiWorkGroup[TENANT02]" value="" />
<!-- Four Eyes Principle -->
<add key="FourEyesPrinciple[TENANT02]" value="true" />
Site configuration file: Settings.json
To enable the configuration menu of "4 eyes" mode, you must add the following statement:
"foureyes": true,

{
"menu": "all",
"all": {
"desc": "Display All Menu",
"top": "MenuAdmin",
"menu": "Home",
"home": true,
"history": true,
"foureyes": true,
"monitormenu": true,