tenseleyflow/shithub / c559d81

Browse files

api: mount actions caches under /api/v1 group

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
c559d813ce8f426f2b7ea1d9023f73bad18868e5
Parents
2a98b37
Tree
dee7585

1 changed file

StatusFile+-
M internal/web/handlers/api/api.go 2 0
internal/web/handlers/api/api.gomodified
@@ -205,6 +205,8 @@ func (h *Handlers) Mount(r chi.Router) {
205205
 		h.mountActionsSecrets(r)
206206
 		// S50 §13 — actions variables CRUD (repo + org).
207207
 		h.mountActionsVariables(r)
208
+		// S50 §13 — actions caches list + delete.
209
+		h.mountActionsCaches(r)
208210
 	})
209211
 }
210212