9 lines
248 B
JavaScript
Raw Permalink Normal View History

import mongoose from "mongoose";
2022-04-01 05:29:20 -05:00
export function needDatabase(res, req, next) {
if (mongoose.connection.readyState != 1) {
res.status(500).send("Internal server error: Database connection faulty.");
} else {
next();
}
}