mirror of
https://github.com/cheveguerra/whaticket-community.git
synced 2026-04-19 20:29:17 +00:00
feat: finished queues crud services
This commit is contained in:
@@ -9,4 +9,10 @@ queueRoutes.get("/queue", isAuth, QueueController.index);
|
||||
|
||||
queueRoutes.post("/queue", isAuth, QueueController.store);
|
||||
|
||||
queueRoutes.get("/queue/:queueId", isAuth, QueueController.show);
|
||||
|
||||
queueRoutes.put("/queue/:queueId", isAuth, QueueController.update);
|
||||
|
||||
queueRoutes.delete("/queue/:queueId", isAuth, QueueController.remove);
|
||||
|
||||
export default queueRoutes;
|
||||
|
||||
Reference in New Issue
Block a user