[Crate Enhancement] Microsoft: User Onboarding - Missing Default field
Dan Parson
Update "Primary Email Domain" on the User Onboarding form to default the "default" field.
The options generator for setting a users Primary Email Domain has a default field to select if the "form_default_selection_email_domain" org variable is configured for the client, however this option is not pre-selected on the form because the default field is missing on the form input
Log In
Dan Parson
Further enhancement: if the following Jinja was added to the option generator that select's the default field it would reduce the need to even set the "form_default_selection_email_domain" org variable as it would pull the company domain variable it the org "form_default_selection_email_domain" was not set.
{%- set email_domain = ORG.VARIABLES.form_default_selection_email_domain if ORG.VARIABLES.form_default_selection_email_domain else ORG.ATTRIBUTES.domain if ORG.ATTRIBUTES.domain else "none" -%}
{{ email_domain }}