Initial commit: teaching institution management API.

Express/MongoDB backend with JWT auth, RBAC, S3 uploads, notifications, and scheduled jobs.
This commit is contained in:
2026-08-09 04:18:08 +02:00
commit f04c797be6
107 changed files with 9190 additions and 0 deletions
@@ -0,0 +1,35 @@
// /components/professors/professorController.js
const catchAsync = require('../../utils/catchAsync');
const professorService = require('./professorService');
const { successResponse, listResponse } = require('../../utils/apiResponse');
exports.create = catchAsync(async (req, res, next) => {
const professor = await professorService.createProfessor(req.body);
return successResponse(res, 201, 'Professor created successfully', professor);
});
exports.getOne = catchAsync(async (req, res, next) => {
const professor = await professorService.getProfessorById(req.params.id);
return successResponse(res, 200, 'Professor retrieved successfully', professor);
});
exports.getAll = catchAsync(async (req, res, next) => {
const { data, meta } = await professorService.getAllProfessors(req.query);
return listResponse(res, 200, data, meta);
});
exports.update = catchAsync(async (req, res, next) => {
const professor = await professorService.updateProfessor(req.params.id, req.body);
return successResponse(res, 200, 'Professor updated successfully', professor);
});
exports.delete = catchAsync(async (req, res, next) => {
await professorService.deleteProfessor(req.params.id);
return successResponse(res, 200, 'Professor deleted successfully');
});
exports.search = catchAsync(async (req, res, next) => {
const { data, meta } = await professorService.searchProfessors(req.query);
return listResponse(res, 200, data, meta);
});