hi
Can you share the steps and code to repro your problem?
hi
Can you share the steps and code to repro your problem?
hi Jurjen
There is a Authentication.razor
in lepton theme module. We are replacing it.
You can't use it in index page. It must be in the Page folder like the screen that I shared.
hi
You can create a WebAssemblyCurrentTenantAccessor
class to fix this.
https://github.com/abpframework/abp/pull/8842
hi davidc
It was not possible to connect to the redis server(s). UnableToConnect on 127.0.0.1:6379
You need set up the Redis for the Public website.
where do i get this event as we are using abp Identity module for uer creation/updation
You can consider override these sevices,They are creating/updating users and user profiles.
IdentityUserAppService
and ProfileAppService
https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Overriding-Services
Also there is requirment that Suppler Admin Role e.g Samsung Supplier admin should be see only samsung organization users. we created "Samsung" ABP organization unit and added Suppler Admin Role and User to it. But we logged in with Supplier admin, he is able to see all user and not just sumsung user. let me know how to achive this or filter this in ABP identity module. See hierarchy Anchor Admin >> Supplier Admin >> Supplier User Here Supplier Admin should be able to View/Add/Update users of his organization. Also, can we filter users based on claims ?
The default module does not provide these functions, you need to implement it yourself, like my reply above, override the default service, and customize your business logic
hi
Please share the proejct via email liming.ma@volosoft.com
hi https://zoom.us/j/95523457231?pwd=a0s5S3dFQ0RjbDdXa2syaGZJSXVwZz09
https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.components.webassembly.authentication.remoteauthenticatorviewcore-1.onloginsucceeded?view=aspnetcore-5.0
@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
@using Volo.Abp.DependencyInjection
@inherits Volo.Abp.AspNetCore.Components.WebAssembly.LeptonTheme.Pages.Authentication
@attribute [ExposeServices(typeof(Volo.Abp.AspNetCore.Components.WebAssembly.LeptonTheme.Pages.Authentication))]
@attribute [Dependency(ReplaceServices = true)]
<Card>
<CardBody>
<RemoteAuthenticatorView Action="@Action" OnLogOutSucceeded=@this.OnLogOutSucceeded OnLogInSucceeded=@this.OnLogInSucceeded >
<LoggingIn>
<LoadingIndicator/>
</LoggingIn>
<CompletingLoggingIn>
<LoadingIndicator/>
</CompletingLoggingIn>
<LogOut>
<LoadingIndicator/>
</LogOut>
<CompletingLogOut>
<LoadingIndicator/>
</CompletingLogOut>
<LogOutSucceeded>
@L["Authentication:YouAreLoggedOut"]
</LogOutSucceeded>
</RemoteAuthenticatorView>
</CardBody>
</Card>
@code{
public void OnLogInSucceeded()
{
Console.WriteLine("OnLogInSucceeded");
}
public void OnLogOutSucceeded()
{
Console.WriteLine("OnLogOutSucceeded");
}
}