这是基于vue-vben-admin 模板适用于abp vNext的前端管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1.6 KiB

LINGYUN.Abp.FeatureManagement.HttpApi

Feature management HTTP API module that provides REST API interfaces for feature definition management.

Features

  • Feature Definition Management API
    • Create, update, delete feature definitions
    • Query feature definition list
  • Feature Group Definition Management API
    • Create, update, delete feature group definitions
    • Query feature group definition list
  • Localization support
  • Integration with ABP feature management module

Module Dependencies

[DependsOn(
    typeof(AbpFeatureManagementApplicationContractsModule),
    typeof(VoloAbpFeatureManagementHttpApiModule))]
public class AbpFeatureManagementHttpApiModule : AbpModule
{
}

API Routes

Feature Definitions

  • GET /api/feature-management/definitions
  • GET /api/feature-management/definitions/{name}
  • POST /api/feature-management/definitions
  • PUT /api/feature-management/definitions/{name}
  • DELETE /api/feature-management/definitions/{name}

Feature Group Definitions

  • GET /api/feature-management/group-definitions
  • GET /api/feature-management/group-definitions/{name}
  • POST /api/feature-management/group-definitions
  • PUT /api/feature-management/group-definitions/{name}
  • DELETE /api/feature-management/group-definitions/{name}

Localization Configuration

The module uses ABP's localization system with the following resources:

  • AbpFeatureManagementResource
  • AbpValidationResource

More Information

简体中文