You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2.2 KiB
2.2 KiB
| title | status | type | priority | created_at | updated_at | blocked_by | |||
|---|---|---|---|---|---|---|---|---|---|
| Implement POST /api/quotes/:id — partial update, verify X-Auth-Code header, update updated_at | completed | task | normal | 2026-03-10T23:32:07Z | 2026-03-10T23:32:14Z |
|
Shared types and utilities are in src/lib.rs — code placed there must compile for both the host target and wasm32-unknown-unknown.
POST /api/quotes/:id performs a partial update of a quote. The caller must provide the correct auth code via the X-Auth-Code request header. Only fields present in the request body are updated; absent fields are left unchanged. Optional fields (source, date) can be explicitly set to null to clear them.
cargo fmt
cargo check
cargo clippy
cargo test
`feat(quotesdb): implement POST /api/quotes/:id — partial update with auth verification`