Додана сторінка "історія служіння"

This commit is contained in:
2025-09-20 20:02:46 +03:00
parent ff393417a1
commit d75fb7ec3d
23 changed files with 3065 additions and 1078 deletions

View File

@@ -0,0 +1,10 @@
const express = require('express');
const router = express.Router({ mergeParams: true });
const historyApartmentController = require('../controllers/history.apartment.controller');
const authenticate = require("../middleware/auth");
router
.route('/list')
.get(authenticate, historyApartmentController.getList);
module.exports = router;