这是基于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.
 
 
 
 
 
 
feijie 7b39a0c847 feat(docs): 添加PushPlus模块文档 1 year ago
..
LINGYUN/Abp/PushPlus/SettingManagement upgrade: upgrade abp framework to 8.1.2 2 years ago
FodyWeavers.xml upgrade(abp): upgrade abp framework to 7.4.0 2 years ago
FodyWeavers.xsd upgrade(abp): upgrade abp framework to 7.4.0 2 years ago
LINGYUN.Abp.PushPlus.SettingManagement.csproj upgrade abp framework to 8.2.0 2 years ago
README.EN.md feat(docs): 添加PushPlus模块文档 1 year ago
README.md feat(docs): 添加PushPlus模块文档 1 year ago

README.md

LINGYUN.Abp.PushPlus.SettingManagement

PushPlus 设置管理模块,提供 PushPlus 配置的管理界面和API接口。

功能特性

  • 提供 PushPlus 配置管理接口
  • 支持全局配置管理
  • 支持租户配置管理
  • 支持多语言
  • 集成 ABP 设置管理模块

安装

dotnet add package LINGYUN.Abp.PushPlus.SettingManagement

模块引用

[DependsOn(typeof(AbpPushPlusSettingManagementModule))]
public class YouProjectModule : AbpModule
{
  // other
}

API接口

获取全局配置

GET /api/setting-management/push-plus/by-global

响应示例:

{
  "name": "PushPlus",
  "displayName": "PushPlus配置",
  "settings": [
    {
      "name": "PushPlus.Security.Token",
      "value": "your-token",
      "displayName": "Token",
      "description": "PushPlus平台获取的Token"
    },
    {
      "name": "PushPlus.Security.SecretKey",
      "value": "your-secret",
      "displayName": "密钥",
      "description": "PushPlus平台获取的密钥"
    }
  ]
}

获取租户配置

GET /api/setting-management/push-plus/by-current-tenant

响应格式同全局配置。

权限

  • Abp.PushPlus.ManageSetting - 管理PushPlus配置的权限

本地化

模块支持以下语言:

  • 中文简体
  • 英文

更多信息