| 12345678910111213 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- const express_1 = require("express");
- const clientConnectionController_1 = require("../controllers/clientConnectionController");
- const router = (0, express_1.Router)();
- router.get('/', clientConnectionController_1.ClientConnectionController.getAllConnections);
- router.get('/client/:clientid', clientConnectionController_1.ClientConnectionController.getConnectionsByClientId);
- router.get('/event/:event', clientConnectionController_1.ClientConnectionController.getConnectionsByEvent);
- router.get('/timerange', clientConnectionController_1.ClientConnectionController.getConnectionsByTimeRange);
- router.get('/stats', clientConnectionController_1.ClientConnectionController.getConnectionStats);
- router.get('/stats/daily', clientConnectionController_1.ClientConnectionController.getDailyConnectionStats);
- exports.default = router;
- //# sourceMappingURL=clientConnectionRoutes.js.map
|