- Updated LoanTable component to fetch loan data from new API endpoint and display notes. - Enhanced UserTable component to include additional user fields (first name, last name, email, admin status) and updated input handling. - Modified fetcher utility to use new user data API endpoint. - Adjusted login functionality to point to the new admin login endpoint and handle unauthorized access. - Refactored user actions utility to align with updated API endpoints for user management. - Updated backend routes for user and loan data management to reflect new structure and naming conventions. - Revised SQL schema and mock data to accommodate new fields and constraints. - Changed Docker configuration to use the new database name.
31 lines
904 B
JavaScript
31 lines
904 B
JavaScript
import express from "express";
|
|
import { authenticateAdmin } from "../../services/authentication.js";
|
|
const router = express.Router();
|
|
import dotenv from "dotenv";
|
|
dotenv.config();
|
|
|
|
// database funcs import
|
|
import {
|
|
deleteLoanById,
|
|
getAllLoans,
|
|
} from "./database/loanDataMgmt.database.js";
|
|
|
|
router.get("/all-loans", authenticateAdmin, async (req, res) => {
|
|
const result = await getAllLoans();
|
|
if (result.success) {
|
|
return res.status(200).json(result.data);
|
|
}
|
|
return res.status(500).json({ message: "Failed to retrieve loans" });
|
|
});
|
|
|
|
router.delete("/delete-loan/:id", authenticateAdmin, async (req, res) => {
|
|
const loanId = req.params.id;
|
|
const result = await deleteLoanById(loanId);
|
|
if (result.success) {
|
|
return res.status(200).json({ message: "Loan deleted successfully" });
|
|
}
|
|
return res.status(500).json({ message: "Failed to delete loan" });
|
|
});
|
|
|
|
export default router;
|