mirror of
https://github.com/langgenius/dify.git
synced 2026-04-08 17:27:19 +08:00
- Added a new event handler for syncing plugin trigger relationships when a draft workflow is synced, ensuring that the database reflects the current state of plugin triggers. - Introduced subscription management features in the frontend, allowing users to select, add, and remove subscriptions for trigger plugins. - Updated various components to support subscription handling, including the addition of new UI elements for subscription selection and removal. - Enhanced internationalization support by adding new translation keys related to subscription management. These changes improve the overall functionality and user experience of trigger plugins within workflows.
17 lines
909 B
Python
17 lines
909 B
Python
from .clean_when_dataset_deleted import handle
|
|
from .clean_when_document_deleted import handle
|
|
from .create_document_index import handle
|
|
from .create_installed_app_when_app_created import handle
|
|
from .create_site_record_when_app_created import handle
|
|
from .delete_tool_parameters_cache_when_sync_draft_workflow import handle
|
|
from .sync_plugin_trigger_when_app_created import handle
|
|
from .sync_webhook_when_app_created import handle
|
|
from .sync_workflow_schedule_when_app_published import handle
|
|
from .update_app_dataset_join_when_app_model_config_updated import handle
|
|
from .update_app_dataset_join_when_app_published_workflow_updated import handle
|
|
from .update_app_triggers_when_app_published_workflow_updated import handle
|
|
|
|
# Consolidated handler replaces both deduct_quota_when_message_created and
|
|
# update_provider_last_used_at_when_message_created
|
|
from .update_provider_when_message_created import handle
|