mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-07 02:09:46 -06:00
53 lines
1009 B
JavaScript
Executable File
53 lines
1009 B
JavaScript
Executable File
import { Router } from "express";
|
|
import { isAllowed } from "../middleware/isAllowed.js";
|
|
class QueueRoutes {
|
|
constructor(queueController) {
|
|
this.router = Router();
|
|
this.queueController = queueController;
|
|
this.initRoutes();
|
|
}
|
|
initRoutes() {
|
|
this.router.get(
|
|
"/metrics",
|
|
isAllowed(["admin", "superadmin"]),
|
|
this.queueController.getMetrics
|
|
);
|
|
|
|
this.router.get(
|
|
"/jobs",
|
|
isAllowed(["admin", "superadmin"]),
|
|
this.queueController.getJobs
|
|
);
|
|
|
|
this.router.post(
|
|
"/jobs",
|
|
isAllowed(["admin", "superadmin"]),
|
|
this.queueController.addJob
|
|
);
|
|
|
|
this.router.post(
|
|
"/obliterate",
|
|
isAllowed(["admin", "superadmin"]),
|
|
this.queueController.obliterateQueue
|
|
);
|
|
|
|
this.router.post(
|
|
"/flush",
|
|
isAllowed(["admin", "superadmin"]),
|
|
this.queueController.flushQueue
|
|
);
|
|
|
|
this.router.get(
|
|
"/health",
|
|
isAllowed(["admin", "superadmin"]),
|
|
this.queueController.checkQueueHealth
|
|
);
|
|
}
|
|
|
|
getRouter() {
|
|
return this.router;
|
|
}
|
|
}
|
|
|
|
export default QueueRoutes;
|