feat: Auth + CRUD completion + Resolution ticket #1

Merged
hzhang merged 4 commits from feat/auth-and-cleanup into main 2026-02-22 01:51:22 +00:00
Showing only changes of commit f823a2475d - Show all commits

View File

@@ -291,3 +291,14 @@ def remove_project_member(project_id: int, user_id: int, db: Session = Depends(g
db.delete(member)
db.commit()
return None
# ============ System API ============
@app.get("/version")
def version():
return {
"name": "HarborForge",
"version": "0.1.0",
"description": "Agent/人类协同任务管理平台"
}