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.
793 B
793 B
LINGYUN.Abp.ElsaNext
elsa-core 工作流的abp集成(3.x版本)
特性
- 定义AbpTenantResolver与多租户集成,使elsa支持abp租户解析
- 定义AbpTenantsProvider与多租户集成,使elsa从abp中取租户信息
- 定义AbpElsaIdGenerator通过IGuidGenerator接口生成工作流标识
- 定义abp相关JavaScript扩展
配置使用
[DependsOn(
typeof(AbpElsaNextModule)
)]
public class YouProjectModule : AbpModule
{
public override void PreConfigureServices(ServiceConfigurationContext context)
{
PreConfigure<IModule>(elsa =>
{
// 自定义elsa相关配置
});
}
}