proposal-evaluation-canister-body.mjs
20 lines 775 B
Raw
sha256:c2dbf04d56308f3bbf2d06e6d2eb022b8948b1e827195fe525a44e5e18d5f9c0 feat(auth): Phase B Connect cloud agent (RFC 8628) + Hermes… Human minor ⚠ breaking 12 days 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:93bcf8f9bd56d8c5b9339f4ec73b9ebd66571398d56262d38eedc2cfa9db9882 fix(test): align Band B landing assertion with desktop MCP … Human 12 days ago