Activities of "maliming"

Your MyPermissionStore has already replaced the built-in PermissionStore.

I don't understand what your problem is with it.

Can you reproduce your problem in a template project? That way I can check.

Thanks

Answer

hi

However, when setting up the callback URL, it automatically picks up the internal domain with HTTP, leading to issues when using HTTPS.

What's the issue?

hi

Can you create a new ms project and select blazor wasm as UI type to check the new design?

Thanks.

hi

there are two projects in the /apps/blazor directory, ProjectName.Blazor.Client and ProjectName.Blazor.

This is the new Blazor web app template. see https://abp.io/docs/latest/release-info/migration-guides/abp-8-2-blazor-web-app

You can create a new template project just as your current project type. then compare the code.

Thanks

hi

We will fix this, Your ticket has been refunded.

hi

If we can just work out removing language selector from login box that would be perfect.

ok, We will hide it if there is only one language in next version.

Thanks.

hi

The Logout button however doesn't have an Id or any classes or any other parameters to make it easy to attach event handlers to.

Can you share the HTML code of the whole menu?

I think you can use the CSS selector to query the Logout button.

Thanks.

hi

Notice that, some identity related tables are not being generated in tenant database.(E.g AbpUser table). I have tried manually apply the migration by clicking "Apply database migrations" button on the UI, but the missing tables still not being generated.

Please check the logs.txt files. There may be errors.

hi

but api host doesn't call IPermissionStore .

IPermissionStore is only called when checking permissions.

Can you reproduce this in a template project? That way I can check.

Thanks

hi

You can set all log levels to Verbose to see what happened.


public class Program
{
    public async static Task<int> Main(string[] args)
    {
        Log.Logger = new LoggerConfiguration()
            .MinimumLevel.Verbose()
            .Enrich.FromLogContext()
            .WriteTo.Async(c => c.File("Logs/logs.txt"))
            .WriteTo.Async(c => c.Console())
            .CreateLogger();
Showing 621 to 630 of 8460 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11