Replies: 3 comments
-
Thanks for the feature request. We have created a product backlog item for this. I will let you know if it is decided that we will implement this feature. |
Beta Was this translation helpful? Give feedback.
-
Instead of deleting the DLL (which will get restored on a new deployment), you can also leave it installed and disable the composer instead using: // For v3 (targeting Umbraco 8):
[assembly:DisableComposer(typeof(Umbraco.Cloud.Identity.Cms.UmbracoIdComposer))]
// For v4 (targeting Umbraco 9):
[assembly:DisableComposer(typeof(Umbraco.Cloud.Identity.Cms.V9.UmbracoIdComposer))]
// For v10 (targeting Umbraco 10):
[assembly:DisableComposer(typeof(Umbraco.Cloud.Identity.Cms.V10.UmbracoIdComposer))] |
Beta Was this translation helpful? Give feedback.
-
Tried this for v14 @ronaldbarendse:
It seems the "Umbraco Id" button is still shown on Is there something else that needs to be disabled to get rid of the button gracefully (as in: without resorting to having to remove the DLL). And/or: is there a better way of disabling it by now? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Issue description
In our company we have the requirement to use AD FS or Azure AD as login providers for the Umbraco backoffice login.
After several and long chats with Umbraco support, I finally was told that it is not possible to combine Umbraco Cloud ID with a custom login provider (like AD FS or Azure AD).
But, to be able to use a custom login provider, the Umbraco Cloud ID should be disabled.
The only way to to this at this moment, is by deleting the "Umbraco.Cloud.Identity.Cms.dll".
See also: Umbraco forum
But:
For instance only use Umbraco Cloud ID on the local development environment (for which AD FS or Azure AD is not possible or needed), or only use the custom login provider on the Live environment.
So instead of having to delete a dll from the bin folder, could a boolean appsetting like "Umbraco.Cloud.Identity.UseUmbracoCloudID" be introduced?!
Beta Was this translation helpful? Give feedback.
All reactions