1
0
Fork 0
mirror of synced 2024-09-30 00:57:16 +13:00

fixing tests after dodgy merge

This commit is contained in:
Michael Shanks 2020-05-27 17:29:26 +01:00
parent fe79f294b4
commit 348eaab73c

View file

@ -14,13 +14,14 @@ router
controller.fetchActionScript
)
.put("/api/:instanceId/workflows", authorized(BUILDER), controller.update)
.post("/api/:instanceId/workflows", authorized(BUILDER), controller.create)
.post(
"/api/:instanceId/workflows/action",
authorized(BUILDER),
controller.executeAction
)
.delete(
"/api/:instanceId/workflows/:id",
"/api/:instanceId/workflows/:id/:rev",
authorized(BUILDER),
controller.destroy
)