mirror of
https://github.com/langgenius/dify.git
synced 2026-01-14 06:07:33 +08:00
- Add new workflow plugin trigger service for managing plugin-based triggers - Implement trigger provider encryption utilities for secure credential storage - Add custom trigger errors module for better error handling - Refactor trigger provider and manager classes for improved plugin integration - Update API endpoints to support plugin trigger workflows - Add database migration for plugin trigger workflow support 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
6 lines
156 B
Python
6 lines
156 B
Python
from configs import dify_config
|
|
|
|
|
|
def parse_endpoint_id(endpoint_id: str) -> str:
|
|
return f"{dify_config.CONSOLE_API_URL}/triggers/plugin/{endpoint_id}"
|