chore(approval): TODO markers for overlay UX and requestId→sessionId lookup

Two follow-ups for the approval refactor:
- InputReducer STEER input mode hardcodes APPROVE; needs the future
  approve/reject overlay UX to let the user pick.
- GlobalStreamHandler derives scopeSessionId from requestId as a
  placeholder; needs a real requestId → sessionId lookup once exposed.
This commit is contained in:
2026-05-25 19:56:07 +04:00
parent 5abf7d1253
commit 2e3b8e599c
2 changed files with 5 additions and 0 deletions
@@ -69,6 +69,8 @@ object InputReducer {
Effect.SendWs(
ClientMessage.ApprovalResponse(
requestId = ApprovalRequestId(active.requestId),
// TODO: hardcoded APPROVE until the approve/reject overlay UX lands;
// then the user picks the decision explicitly alongside the note.
decision = ApprovalDecision.APPROVE,
steeringNote = text,
),