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.
This commit is contained in:
Harry 2025-09-25 18:23:17 +08:00
parent 896f3252b8
commit aef862d9ce
1 changed files with 0 additions and 1 deletions

View File

@ -145,6 +145,5 @@ class AppTriggerEnableApi(Resource):
api.add_resource(WebhookTriggerApi, "/apps/<uuid:app_id>/workflows/triggers/webhook")
api.add_resource(PluginTriggerApi, "/apps/<uuid:app_id>/workflows/triggers/plugin")
api.add_resource(AppTriggersApi, "/apps/<uuid:app_id>/triggers")
api.add_resource(AppTriggerEnableApi, "/apps/<uuid:app_id>/trigger-enable")