tenseleyflow/shithub / a8950d1

Browse files

api: mount actions lifecycle REST under /api/v1 group

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
a8950d14c71d4e13714bd9d7733f3b4d063d5db1
Parents
66867ba
Tree
211ff5c

1 changed file

StatusFile+-
M internal/web/handlers/api/api.go 2 0
internal/web/handlers/api/api.gomodified
@@ -192,6 +192,8 @@ func (h *Handlers) Mount(r chi.Router) {
192192
 		h.mountIssueEvents(r)
193193
 		// S50 §13 — actions workflows list/get + workflow_dispatch.
194194
 		h.mountActionsWorkflows(r)
195
+		// S50 §13 — workflow enable/disable + run delete + artifacts + job logs.
196
+		h.mountActionsLifecycleREST(r)
195197
 	})
196198
 }
197199