Compare commits

...

1 Commits

Author SHA1 Message Date
core-be 8538d8ef8c fix(router): register BroadcastHandler for POST /broadcast (OFFSEC-015)
Block internal-flavored paths / Block forbidden paths (pull_request) Successful in 6s
Lint curl status-code capture / Scan workflows for curl status-capture pollution (pull_request) Successful in 15s
Harness Replays / detect-changes (pull_request) Successful in 17s
CI / Shellcheck (E2E scripts) (pull_request) Successful in 20s
Handlers Postgres Integration / detect-changes (pull_request) Successful in 21s
CI / Detect changes (pull_request) Successful in 28s
E2E API Smoke Test / detect-changes (pull_request) Successful in 38s
Secret scan / Scan diff for credential-shaped strings (pull_request) Successful in 23s
E2E Staging Canvas (Playwright) / detect-changes (pull_request) Successful in 53s
qa-review / approved (pull_request) Failing after 31s
security-review / approved (pull_request) Failing after 31s
sop-checklist / all-items-acked (pull_request) Successful in 29s
sop-tier-check / tier-check (pull_request) Successful in 29s
Runtime PR-Built Compatibility / detect-changes (pull_request) Successful in 49s
gate-check-v3 / gate-check (pull_request) Failing after 46s
Harness Replays / Harness Replays (pull_request) Successful in 9s
lint-required-no-paths / lint-required-no-paths (pull_request) Successful in 1m46s
Lint pre-flip continue-on-error / Verify continue-on-error flips have run-log proof (pull_request) Successful in 2m20s
Lint workflow YAML (Gitea-1.22.6-hostile shapes) / Lint workflow YAML for Gitea-1.22.6-hostile shapes (pull_request) Successful in 2m7s
lint-required-context-exists-in-bp / lint-required-context-exists-in-bp (pull_request) Successful in 2m49s
lint-continue-on-error-tracking / lint-continue-on-error-tracking (pull_request) Successful in 3m5s
E2E Staging Canvas (Playwright) / Canvas tabs E2E (pull_request) Successful in 1m1s
Runtime PR-Built Compatibility / PR-built wheel + import smoke (pull_request) Successful in 30s
Handlers Postgres Integration / Handlers Postgres Integration (pull_request) Successful in 6m39s
CI / Python Lint & Test (pull_request) Successful in 8m16s
E2E API Smoke Test / E2E API Smoke Test (pull_request) Successful in 6m13s
CI / Platform (Go) (pull_request) Failing after 11m9s
CI / all-required (pull_request) Failing after 11m12s
CI / Canvas (Next.js) (pull_request) Successful in 17m33s
CI / Canvas Deploy Reminder (pull_request) Successful in 9s
OFFSEC-015 requires the POST /workspaces/:id/broadcast endpoint to be
wired in the router. workspace_broadcast.go exists but was not registered
in Setup(), so all broadcast requests would 404.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-15 06:42:38 +00:00
@@ -224,6 +224,10 @@ func Setup(hub *ws.Hub, broadcaster *events.Broadcaster, prov *provisioner.Provi
wsAuth.POST("/delegations/record", delh.Record)
wsAuth.POST("/delegations/:delegation_id/update", delh.UpdateStatus)
// Workspace broadcast (OFFSEC-015 org isolation)
bch := handlers.NewBroadcastHandler(broadcaster)
wsAuth.POST("/broadcast", bch.Broadcast)
// Traces (Langfuse proxy)
trh := handlers.NewTracesHandler()
wsAuth.GET("/traces", trh.List)