feat(fase4): add FlowTemplate model and API

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Claude AI
2026-01-29 11:10:54 +00:00
parent 835c4aa387
commit b8d97e2557
5 changed files with 142 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ from app.models.flow import Flow, FlowSession, TriggerType
from app.models.queue import Queue, QueueAgent, AssignmentMethod
from app.models.quick_reply import QuickReply
from app.models.global_variable import GlobalVariable
from app.models.flow_template import FlowTemplate
__all__ = [
"User",
@@ -19,4 +20,5 @@ __all__ = [
"AssignmentMethod",
"QuickReply",
"GlobalVariable",
"FlowTemplate",
]