Activities of "liangshiwei"

It will be fixed in 3.0, You can send an email to info@abp.io and explain the account infomation whose password is to be changed. We will help you change your password : ).

Thanks for your beeback, I will check as soon as possible

Hi,

ABP has no restrictions on this, you can use any way you favorite.

LIke : https://blog.elmah.io/generate-a-pdf-from-asp-net-core-for-free/

Can you explain in detail? Do you mean export ppt?

Can you share more code and steps to reproduce? Thanks.

Hi,

The easiest way is to delete the organizational unit menu:

context.Menu.GetAdministration().Items.FirstOrDefault(x => x.Name.Equals(IdentityMenuNames.GroupName))?.TryRemoveMenuItem(IdentityMenuNames.OrganizationUnits);

If you want to disable the API:

[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(IOrganizationUnitAppService))]
[RemoteService(false)]
public class MyOrganizationUnitAppService : OrganizationUnitAppService, IOrganizationUnitAppService
{
    public MyOrganizationUnitAppService(
        OrganizationUnitManager organizationUnitManager,
        IdentityUserManager userManager,
        IOrganizationUnitRepository organizationUnitRepository,
        IIdentityUserRepository identityUserRepository,
        IIdentityRoleRepository identityRoleRepository) 
        : base(
            organizationUnitManager,
            userManager, 
            organizationUnitRepository,
            identityUserRepository, 
            identityRoleRepository)
    {
    }
}

Hi

I use default and rabbitmq distributed event bus provider, can't reproduce your problem.

Can your provide steps to reproduce? Thanks.

Hi,

Are you using rabbitmq or default distributed event bus provider?

Hi,

You can set RequireHttpsMetadata property value to false;

  • For host application:

  • For angular application:

  • IIS:

Now , works fine.

  • en.json Extend existing languages
```json
    {
      "culture": "en",
      "texts": {
        "TestKey": "This is test value"
      }
    }
```
  • vi.json A new languages files
```json
    {
      "culture": "vi",
      "texts": {
        "TestKey": "Đây là giá trị được thử nghiệm"
      }
    }
```

Set as embedded file:

<ItemGroup>
    <EmbeddedResource Include="Localization\Identity\*.json" />
    <Content Remove="Localization\Identity\*.json" />
 </ItemGroup>

Extend localized resources for modules:

Configure<AbpLocalizationOptions>(options =>
{
    options.Resources
        .Get<IdentityResource>()
        .AddVirtualJson("/Localization/Identity");
});

Add Vietnamese culture:

That's all

Showing 2251 to 2260 of 2428 entries
Made with ❤️ on ABP v9.2.0-preview. Updated on January 20, 2025, 10:27