hi
You can try to replace AddOpenIdConnect with auth0 in the MVC project. It's simple.
let a single identity potentially have access to multiple tenants, as that's something very common in our industry.
You can change the current to access the data in other tenants.
https://docs.abp.io/en/abp/latest/Multi-Tenancy#change-the-current-tenant
hi
Can you share a gif? Thanks.
hi
You can change CookieRequestCultureProvider.DefaultCookieName to your cookies name.
https://gist.github.com/maliming/b1ea80d68982a5b7064d7df6bafa89f5
hi
Migrating from IdentityServer to OpenIddict Step by Step Guide
https://docs.abp.io/en/commercial/latest/migration-guides/openIddict-step-by-step
hi
Can you share the logs when using tenant.domain.com?
Especially the url in the email.
Temporary solution:
{
text: l('Edit'),
visible: abp.auth.isGranted(
'AbpIdentity.Users.Update'
),
action: function (data) {
_editModal.open({
id: data.record.id,
});
},
},
{
displayNameHtml: true,
text: function (data) {
return '<li><hr class="dropdown-divider"></li>';
}
},
{
text: l('Permissions'),
visible: abp.auth.isGranted(
'AbpIdentity.Users.ManagePermissions'
),
action: function (data) {
_permissionsModal.open({
providerName: 'U',
providerKey: data.record.id,
providerKeyDisplayName: data.record.userName
});
},
}
hi
Please upgrade the Blazorise and Microsoft.AspNetCore.Components.WebAssembly packages based on the errors.
Remember to run abp bundle command on blazor project to update the js and css.
hi @WilliamT
The rowAction doesn't support adding divider now. We will support it in the next version.
https://github.com/abpframework/abp/issues/18377
hi
You can add more scopes by claimsPrincipal.SetScopes("Your_Scope);
hi
Can you try to use the 2.4.3 as the lepton version.