...
There is currently no configuration user interface for this. The configuration is linked to the Level of Trust and stored in the servicecorelogin_quality_of_registration
table. There you can define different QualityOfRegistrationSteps
which have to match the documented enum
below. In upcoming versions there will be a user interface for this configuration.
Up to v9.0.3
Code Block |
---|
public enum QualityOfRegistrationSteps { Dummy, //0 None, //1 AutoOrManual, //2 AutoOrManualAndAhv, //3 } |
As of v9.1.0
Code Block |
---|
public enum QualityOfRegistrationSteps { Auto Dummy, //0 AutoAndAhv } |
...
None, // |
...
1 AutoOrManual, // |
...
2 AutoOrManualAndAhv, // |
...
3 Auto, // |
...
4 AutoAndAhv // |
...
5
} |
Meaning of Auto
: Self-Registration on a mobile phone using a browser-guided process controlled by fidentity.
Meaning of Manual
: Manual registration at a government agency based on a pre-printed form which includes a 2D barcode (HTTPS Link).
Meaning of AutoOrManualAndAHV
: To achieve this QoR, you have to achieve: ( (“Auto” or “Manual”) AND AHV-Check )
For example: if you want only None
, Auto
and AutoAndAhv
your servicecorelogin_quality_of_registration
needs only 3 rows with the steps 1, 4 and 5.
...
Hint: The column “name_key” has no functional behavior despite linking to the corresponding translation in the language file to show the correct translation in the UI.