Activities of "liangshiwei"

You can custom it if you want

https://learn.microsoft.com/en-us/aspnet/core/blazor/security/webassembly/additional-scenarios?view=aspnetcore-6.0#customize-the-authentication-user-interface

Hi,

For example it would be helpful to have a 'IsVisibleToClients' property on the PermissionDefinition object (such as the case with Features) that allows the creation/use of a permission without showing it in the Permission Management UI.

you can use WithProperty

myGroup.AddPermission(
    "BookStore_Author_Create",
    LocalizableString.Create<BookStoreResource>("Permission:BookStore_Author_Create")
).WithProperty("IsVisibleToClients", ...);

HI,

Could you share the error logs?

Hi,

you can consider to upgrade your project version.

Add to your auth server project

Configure<AbpAccountOptions>(options =>
{
    options.IsTenantMultiDomain = true;
    options.GetTenantDomain = (httpContext, info) => Task.FromResult(string.IsNullOrWhiteSpace(info.Name) ? $"https://getabp.net" : $"https://{info.Name}.getabp.net");
});

okay :)

Hi,

I can reproduce the problem, but this is how the Blazor web app works. I have no idea now; there may be a better way to improve it, I will continue to investigate

Hi,

We will try to help you, but we are not OAuth experts.

Hi,

When trying to build a MAUI Blazor (and probably MAUI Xamarin as well I guess) you will get build errors from OAuthSecureStorage as the AccessTokenKey property is not defined.

I can't reproduce the problem.

  • abp new Qa -u maui-blalzor
  • dotnet build

The code generated by ABP Suite (and probably the normal MAUI projects in all version) does not seem to be compatible with newer versions of Android. When you try to build it in Release mode with SDK 33 or higher (which is a requirement these days), you will get this error message:

Thanks. We will update the template, and your ticket will be refunded.

Hi,

You can download the source code to check where it is wrong

https://docs.abp.io/en/commercial/latest/tutorials/book-store/part-9?UI=Blazor&DB=EF#download-the-source-code

Showing 931 to 940 of 6045 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 20, 2024, 13:06