+4![gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>](/assets/img/avatar_default.png)









Yeuoly
GitHub
Stream
lyzno1
zhsama
Harry
lyzno1
yessenia
hjlarry
gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
WTW0313
Copilot
b76e17b25d
Signed-off-by: lyzno1 <[email protected]> Co-authored-by: Stream <[email protected]> Co-authored-by: lyzno1 <[email protected]> Co-authored-by: zhsama <[email protected]> Co-authored-by: Harry <[email protected]> Co-authored-by: lyzno1 <[email protected]> Co-authored-by: yessenia <[email protected]> Co-authored-by: hjlarry <[email protected]> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: WTW0313 <[email protected]> Co-authored-by: Copilot <[email protected]>
41 lines
2.3 KiB
Python
41 lines
2.3 KiB
Python
from .clean_when_dataset_deleted import handle as handle_clean_when_dataset_deleted
|
|
from .clean_when_document_deleted import handle as handle_clean_when_document_deleted
|
|
from .create_document_index import handle as handle_create_document_index
|
|
from .create_installed_app_when_app_created import handle as handle_create_installed_app_when_app_created
|
|
from .create_site_record_when_app_created import handle as handle_create_site_record_when_app_created
|
|
from .delete_tool_parameters_cache_when_sync_draft_workflow import (
|
|
handle as handle_delete_tool_parameters_cache_when_sync_draft_workflow,
|
|
)
|
|
from .sync_plugin_trigger_when_app_created import handle as handle_sync_plugin_trigger_when_app_created
|
|
from .sync_webhook_when_app_created import handle as handle_sync_webhook_when_app_created
|
|
from .sync_workflow_schedule_when_app_published import handle as handle_sync_workflow_schedule_when_app_published
|
|
from .update_app_dataset_join_when_app_model_config_updated import (
|
|
handle as handle_update_app_dataset_join_when_app_model_config_updated,
|
|
)
|
|
from .update_app_dataset_join_when_app_published_workflow_updated import (
|
|
handle as handle_update_app_dataset_join_when_app_published_workflow_updated,
|
|
)
|
|
from .update_app_triggers_when_app_published_workflow_updated import (
|
|
handle as handle_update_app_triggers_when_app_published_workflow_updated,
|
|
)
|
|
|
|
# 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 as handle_update_provider_when_message_created
|
|
|
|
__all__ = [
|
|
"handle_clean_when_dataset_deleted",
|
|
"handle_clean_when_document_deleted",
|
|
"handle_create_document_index",
|
|
"handle_create_installed_app_when_app_created",
|
|
"handle_create_site_record_when_app_created",
|
|
"handle_delete_tool_parameters_cache_when_sync_draft_workflow",
|
|
"handle_sync_plugin_trigger_when_app_created",
|
|
"handle_sync_webhook_when_app_created",
|
|
"handle_sync_workflow_schedule_when_app_published",
|
|
"handle_update_app_dataset_join_when_app_model_config_updated",
|
|
"handle_update_app_dataset_join_when_app_published_workflow_updated",
|
|
"handle_update_app_triggers_when_app_published_workflow_updated",
|
|
"handle_update_provider_when_message_created",
|
|
]
|