Activities of "maliming"

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

Answer

hi

Please share the proejct via email liming.ma@volosoft.com

I saw the claims alreay exists in Local Storage

@Mehmet How to get it?

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");
    }
}

services.ConfigureApplicationCookie(options =>
{
    options.AccessDeniedPath = "/MyAccessDenied";
});

how can overide the existing Account/AccessDenied page?

https://docs.abp.io/en/abp/latest/UI/AspNetCore/Customization-User-Interface#overriding-a-page https://community.abp.io/articles/how-to-customize-the-login-page-for-mvc-razor-page-applications-9a40f3cd https://support.abp.io/QA/Questions/240/How-to-customize-the-login-page

https://zoom.us/j/95101853668?pwd=QkMwblFMOVdBd1JKUXdQMzNOK2tDQT09

Showing 7131 to 7140 of 7742 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 23, 2024, 13:33