feat: bulk upsert API with idempotent writes

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-05 14:54:33 +08:00
parent efc8c474fc
commit 0b94b6765d
5 changed files with 310 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
from django.urls import path
from openclaw.views import sessions_bulk_upsert
urlpatterns = []
urlpatterns = [
path("sessions/bulk_upsert/", sessions_bulk_upsert, name="sessions_bulk_upsert"),
]