Versions Compared

Key

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

...

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,
    None,
    AutoOrManual,
    AutoOrManualAndAhv,
}

Hint: Dummy=0 // None=1 // AutoOrManual=2 // AutoOrManualAndAhv=3

As of v9.1.1

Code Block
public enum QualityOfRegistrationSteps
{
    Dummy,
    None,
    AutoOrManual,
    AutoOrManualAndAhv,
    Auto,
    AutoAndAhv
}

Hint: Dummy=0 // 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 www.fidentity.ch.

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.

...