Activities of "liangshiwei"

Hi,

Ok, you can add your own to do it.

ok

I will check it

Hi,

Is there a permission definition called WHAT_IS_IT?

You need to:

public class AbxModuleRolePermissionDefinitionProvider : PermissionDefinitionProvider
{
    public override void Define(IPermissionDefinitionContext context)
    {
  
        var moduleRoleGroup = context.AddGroup(ModuleRolePermissions.GroupName, L("Permission:ModuleRoleManagement"));
        
        moduleRoleGroup.AddChild("AbxModuleRole",....)
    }
 }
 
Configure<PermissionManagementOptions>(options =>
{
    options.ProviderPolicies[AbxModuleRolePermissionValueProvider.ProviderName] = "AbxModuleRole";
    options.ManagementProviders.Add<AbxModuleRolePermissionManagementProvider>();
});

Hi,

Because of price advantage.

Hi,

I didn't see the error message about the license, but you should make sure the license code exists in the appsettings.json or appsettings.secret.json file.

You can check if it is configured correctly this way:

public override void ConfigureServices(ServiceConfigurationContext context)
{
     var configuration = context.Services.GetConfiguration();
     
     var licenseCode = configuration["AbpLicenseCode"];
}

You need to define permission for AbxModuleRolePermissionValueProvider

  • https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Application.Contracts/Volo/Abp/Identity/IdentityPermissionDefinitionProvider.cs#L23
  • https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.PermissionManagement.Domain.Identity/Volo/Abp/PermissionManagement/Identity/AbpPermissionManagementDomainIdentityModule.cs#L21

Hi,

Here are my steps:

  • abp new Myapp -v 5.0.0 -u angular --separate-auth-server
  • Replace the Account and Lepton Theme module with source code
  • Open the package.json file to change ^5.0.0 to ~5.0.0

Remove the node_modules folder and run the abp install-libs command

ok, I will check it

Hi,

In your code suggestions what is the reason to use Ignore(), see below

Because those attributes type of the class are inconsistent, so it needs to be ignored

Showing 3901 to 3910 of 6693 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on November 04, 2025, 06:41