Created
January 15, 2022 23:45
-
-
Save mfcollins3/d8424aa6175c14c203207791ef87b1cf to your computer and use it in GitHub Desktop.
SelfAsserted-LocalAccountSignin-Email Technical Profile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<TechnicalProfile Id="SelfAsserted-LocalAccountSignin-Email"> | |
<DisplayName>Local Account Signin</DisplayName> | |
<Protocol Name="Proprietary" Handler="Web.TPEngine.Providers.SelfAssertedAttributeProvider, Web.TPEngine, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" /> | |
<Metadata> | |
<Item Key="SignUpTarget">SignUpWithLogonEmailExchange</Item> | |
<Item Key="setting.operatingMode">Email</Item> | |
<Item Key="ContentDefinitionReferenceId">api.localaccountsignin</Item> | |
</Metadata> | |
<IncludeInSso>false</IncludeInSso> | |
<InputClaims> | |
<InputClaim ClaimTypeReferenceId="signInName" /> | |
</InputClaims> | |
<OutputClaims> | |
<OutputClaim ClaimTypeReferenceId="signInName" Required="true" /> | |
<OutputClaim ClaimTypeReferenceId="password" Required="true" /> | |
<OutputClaim ClaimTypeReferenceId="objectId" /> | |
<OutputClaim ClaimTypeReferenceId="authenticationSource" /> | |
</OutputClaims> | |
<ValidationTechnicalProfiles> | |
<ValidationTechnicalProfile ReferenceId="login-NonInteractive" /> | |
</ValidationTechnicalProfiles> | |
<UseTechnicalProfileForSessionManagement ReferenceId="SM-AAD" /> | |
</TechnicalProfile> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment