You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per the general suggestion, I added the setting below in the custom policy to hide the Sign Up link that is shown by default in the login screen. Since our business app will add users via MS Graph API, we should not allow user to sign up themselves. <Item Key="setting.showSignupLink">false</Item>
But with this custom policy change, the sign up link is continued to be shown. What is the right way to address this?
The text was updated successfully, but these errors were encountered:
Hey @anandsowm, here's what has worked for me: in the TrustFrameworkExtensions.xml file inside <ClaimsProviders>...</ClaimsProviders> add the following section:
As per the general suggestion, I added the setting below in the custom policy to hide the Sign Up link that is shown by default in the login screen. Since our business app will add users via MS Graph API, we should not allow user to sign up themselves.
<Item Key="setting.showSignupLink">false</Item>
But with this custom policy change, the sign up link is continued to be shown. What is the right way to address this?
The text was updated successfully, but these errors were encountered: