tenseleyflow/shithub / 8e9a893

Browse files

api: mount actions workflows under /api/v1 group

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
8e9a893f13a747b92887fc81cf60330a9a5524ce
Parents
3c4221b
Tree
b721301

1 changed file

StatusFile+-
M internal/web/handlers/api/api.go 2 0
internal/web/handlers/api/api.gomodified
@@ -190,6 +190,8 @@ func (h *Handlers) Mount(r chi.Router) {
190190
 		h.mountStargazers(r)
191191
 		// S50 §20 — issue events / timeline (read-only).
192192
 		h.mountIssueEvents(r)
193
+		// S50 §13 — actions workflows list/get + workflow_dispatch.
194
+		h.mountActionsWorkflows(r)
193195
 	})
194196
 }
195197