本次提交新增了完整的多渠道消息网关系统,包括: 1. 支持飞书、钉钉、Web、Hook 四种渠道的适配器与配置 2. 领域模型层:消息、会话、绑定、出箱等核心实体 3. 应用服务层:管道、中间件、DTO 与业务逻辑 4. 基础设施层:持久化、过滤器、队列等端口实现 5. 接口层:REST API、SSE、WebSocket 通信端点 6. 前端页面与路由配置,添加渠道管理菜单 7. 新增相关依赖包与 docker-compose 部署配置
43 lines
590 B
YAML
43 lines
590 B
YAML
auth:
|
|
token: ""
|
|
password: ""
|
|
max_attempts: 5
|
|
lockout_seconds: 300
|
|
|
|
feishu:
|
|
mode: "webhook"
|
|
app_id: ""
|
|
app_secret: ""
|
|
verification_token: ""
|
|
ws_enabled: true
|
|
|
|
dingtalk:
|
|
mode: "webhook"
|
|
client_id: ""
|
|
client_secret: ""
|
|
ws_enabled: true
|
|
|
|
web:
|
|
sse_enabled: true
|
|
max_connections: 1000
|
|
|
|
hooks:
|
|
mappings: []
|
|
|
|
worker:
|
|
num_workers: 4
|
|
max_concurrent: 20
|
|
poll_timeout_ms: 5000
|
|
outbox_poll_interval: 5.0
|
|
default_agent_config_id: 1
|
|
|
|
access_policies: {}
|
|
|
|
allow_from: {}
|
|
|
|
keyword_blocklist: []
|
|
|
|
mention_gate:
|
|
default_require_mention: true
|
|
mention_patterns: []
|