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

LINGYUN.Abp.Elsa.Activities

Integration of commonly used Activities for Elsa workflow engine.

Configuration and Usage

[DependsOn(
    typeof(AbpElsaActivitiesModule)
    )]
public class YouProjectModule : AbpModule
{
}

appsettings.json

{
    "Elsa": {
        "BlobStoring": true,    // Enable blob storage activities
        "Emailing": true,       // Enable email activities
        "Notification": true,   // Enable notification activities
        "Sms": true,           // Enable SMS activities
        "IM": true,            // Enable instant messaging activities
        "PublishWebhook": true // Enable webhook publishing activities
    }
}

Features

This module integrates several commonly used activities for the Elsa workflow engine:

  • Blob Storage Activities: File storage and management operations
  • Email Activities: Email sending and processing
  • Notification Activities: System notification handling
  • SMS Activities: SMS message sending
  • IM Activities: Instant messaging operations
  • Webhook Activities: Webhook publishing and handling

中文文档