This commit is contained in:
beabigegg
2025-11-13 08:18:15 +08:00
parent 788e2409df
commit df5411e44c
38 changed files with 1163 additions and 445 deletions

View File

@@ -25,7 +25,7 @@ def _resolve_owner_id(owner_val: str | None):
return user.id if user else None
@action_bp.post("/action-items")
@jwt_required()
# @jwt_required() # 已禁用認證
def create_action_item():
"""
建立單筆代辦(會議詳情頁用)
@@ -67,7 +67,7 @@ def create_action_item():
return jsonify({"error": f"create failed: {e}"}), 400
@action_bp.post("/meetings/<int:meeting_id>/action-items/batch")
@jwt_required()
# @jwt_required() # 已禁用認證
def batch_create_action_items(meeting_id: int):
"""
批次建立代辦AI 預覽 → 一鍵儲存)