这是基于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.
 
 
 
 
 
 

733 B

LINGYUN.Abp.Security

Module Description

Extends the Abp Security module, providing additional security features.

Base Modules

  • Volo.Abp.Security

Features

  • Provides JWT Claims type mapping functionality
  • Extends standard JWT Claims type definitions

Configuration

No special configuration items

How to Use

  1. Add AbpSecurityModule dependency
[DependsOn(typeof(AbpSecurityModule))]
public class YouProjectModule : AbpModule
{
}
  1. Use JWT Claims mapping
// JWT Claims type mapping is done automatically, no manual configuration needed
// If you need custom mapping, you can configure it in the module's ConfigureServices method

Back to TOC