Changeset 0.29.3 (#198)

Co-authored-by: Jeffrey Smith <jasafpro@gmail.com>
Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
This commit is contained in:
2026-03-18 00:15:18 +00:00
committed by xcaliber
parent 115004a3ab
commit 7f191e18cd
22 changed files with 1625 additions and 77 deletions

View File

@@ -78,6 +78,16 @@
return this._post(`/api/v1/channels/${channelId}/workflow/reject`, { reason });
};
// ── Forms ────────────────────────────────
API.getWorkflowForm = function(channelId) {
return this._get(`/api/v1/w/${channelId}/form`);
};
API.submitWorkflowForm = function(channelId, data) {
return this._post(`/api/v1/w/${channelId}/form-submit`, data);
};
// ── Assignments ─────────────────────────
API.listMyAssignments = function() {