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

28 lines
777 B

/** 版本权限 */
export const EditionsPermissions = {
/** 新增 */
Create: 'AbpSaas.Editions.Create',
/** 默认 */
Default: 'AbpSaas.Editions',
/** 删除 */
Delete: 'AbpSaas.Editions.Delete',
/** 管理功能 */
ManageFeatures: 'AbpSaas.Editions.ManageFeatures',
/** 更新 */
Update: 'AbpSaas.Editions.Update',
};
/** 租户权限 */
export const TenantsPermissions = {
/** 新增 */
Create: 'AbpSaas.Tenants.Create',
/** 默认 */
Default: 'AbpSaas.Tenants',
/** 删除 */
Delete: 'AbpSaas.Tenants.Delete',
/** 管理连接字符串 */
ManageConnectionStrings: 'AbpSaas.Tenants.ManageConnectionStrings',
/** 管理功能 */
ManageFeatures: 'AbpSaas.Tenants.ManageFeatures',
/** 更新 */
Update: 'AbpSaas.Tenants.Update',
};