From aef862d9ce39d50234abfa1ea03f1dc105c8053b Mon Sep 17 00:00:00 2001 From: Harry Date: Thu, 25 Sep 2025 18:23:17 +0800 Subject: [PATCH] refactor(api): remove unused PluginTriggerApi route - Removed the `PluginTriggerApi` resource route from `workflow_trigger.py` to streamline the API and improve maintainability. This change contributes to a cleaner and more organized codebase. --- api/controllers/console/app/workflow_trigger.py | 1 - 1 file changed, 1 deletion(-) diff --git a/api/controllers/console/app/workflow_trigger.py b/api/controllers/console/app/workflow_trigger.py index 584f7c084b..04292f406a 100644 --- a/api/controllers/console/app/workflow_trigger.py +++ b/api/controllers/console/app/workflow_trigger.py @@ -145,6 +145,5 @@ class AppTriggerEnableApi(Resource): api.add_resource(WebhookTriggerApi, "/apps//workflows/triggers/webhook") -api.add_resource(PluginTriggerApi, "/apps//workflows/triggers/plugin") api.add_resource(AppTriggersApi, "/apps//triggers") api.add_resource(AppTriggerEnableApi, "/apps//trigger-enable")