proposal-evaluation-canister-body.mjs
sha256:8915fe406161f95c1681f9469375e7bae5b28c884f00bedbdef65e4b0cd0738d
docs(flow): commit FLOW-V0-SPEC.md hygiene for 7A-INT merge
Human
23 hours ago
| 1 | /** |
| 2 | * Canister evaluation POST expects checklist JSON in evaluation_checklist_json (extractJsonString). |
| 3 | * Hub UI sends checklist as an array; add the string field before proxying to Motoko. |
| 4 | */ |
| 5 | |
| 6 | /** |
| 7 | * @param {string} method |
| 8 | * @param {string} pathOnly e.g. /api/v1/proposals/uuid/evaluation |
| 9 | * @param {unknown} body |
| 10 | * @returns {unknown} |
| 11 | */ |
| 12 | export function augmentProposalEvaluationBodyForCanister(method, pathOnly, body) { |
| 13 | if (method !== 'POST' || body == null || typeof body !== 'object' || Buffer.isBuffer(body)) return body; |
| 14 | if (!/^\/api\/v1\/proposals\/[^/]+\/evaluation\/?$/.test(pathOnly)) return body; |
| 15 | const next = { ...body }; |
| 16 | if (Array.isArray(next.checklist)) { |
| 17 | next.evaluation_checklist_json = JSON.stringify(next.checklist); |
| 18 | } |
| 19 | return next; |
| 20 | } |
File History
1 commit
sha256:8915fe406161f95c1681f9469375e7bae5b28c884f00bedbdef65e4b0cd0738d
docs(flow): commit FLOW-V0-SPEC.md hygiene for 7A-INT merge
Human
23 hours ago