chore(work): tick task in 04-core-consent-implementation

This commit is contained in:
2026-05-19 14:53:51 +02:00
parent 500a163e90
commit c346f85bc8
2 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
{
"updated_at": "2026-05-19T11:54:41.194Z",
"updated_at": "2026-05-19T12:53:53.314Z",
"epics": {
"binder-wrap-helper": {
"status": "done",
@@ -274,10 +274,10 @@
]
},
"04-core-consent-implementation": {
"status": "todo",
"status": "in-progress",
"title": "core-consent implementation — Payload impl, DI binders, migration helpers, tRPC router",
"ac_total": 3,
"ac_completed": 0,
"ac_completed": 1,
"depends_on": [
"03-core-consent-foundation"
],

View File

@@ -3,7 +3,7 @@ id: 04-core-consent-implementation
epic: dsr-consent-and-cookie-banner
title: core-consent implementation — Payload impl, DI binders, migration helpers, tRPC router
type: technical-story
status: todo
status: in-progress
feature: core-consent
depends-on: [03-core-consent-foundation]
blocks:
@@ -13,7 +13,7 @@ blocks:
10-auth-signup-migration,
]
created: 2026-05-19T12:00:00Z
updated: 2026-05-19T09:55:07.020Z
updated: 2026-05-19T12:53:53.146Z
---
## Goal
@@ -52,6 +52,6 @@ Story 03 established the type surface and structural enforcement. This story del
## Tasks
- [ ] Add `PayloadConsent` Payload-backed implementation in `core-consent/` reading/writing `users.consentState` and emitting `CONSENT_GRANT`/`CONSENT_WITHDRAW` audit entries via injected `core-audit` + `RecordingConsent` test double in `packages/core-testing/` + DI binders `core-consent/di/bind-production.ts` and `core-consent/di/bind-dev-seed.ts`; contract tests covering grant/withdraw/isGranted round-trip, audit entry shape, and `getCategories`; all gates pass.
- [x] Add `PayloadConsent` Payload-backed implementation in `core-consent/` reading/writing `users.consentState` and emitting `CONSENT_GRANT`/`CONSENT_WITHDRAW` audit entries via injected `core-audit` + `RecordingConsent` test double in `packages/core-testing/` + DI binders `core-consent/di/bind-production.ts` and `core-consent/di/bind-dev-seed.ts`; contract tests covering grant/withdraw/isGranted round-trip, audit entry shape, and `getCategories`; all gates pass.
- [ ] Add `extractAnonymousConsent(cookieHeader: string)` + `migrateAnonymousConsent({ userId, cookieState, bannerVersion, policyVersion })` helpers in `core-consent/` with tests covering the happy path (cookie present → calls `IConsent.grant` with `method: "signup-migration"`) and the absent-cookie no-op; all gates pass.
- [ ] Add protocol-agnostic handlers in `core-consent/handlers/` + `consentRouter` tRPC router in `core-consent/consent.router.ts` exporting `grant`, `withdraw`, `isGranted`, `getCategories` procedures with auth checks; integration tests asserting response shapes and auth error passthrough; all gates pass.