9 lines
267 B
JavaScript
9 lines
267 B
JavaScript
|
import { mongoose } from "../database/mongoose.js";
|
||
|
|
||
|
export function needDatabase(res, req, next) {
|
||
|
if (mongoose.connection.readyState != 1) {
|
||
|
res.status(500).send("Internal server error: Database connection faulty.");
|
||
|
} else {
|
||
|
next();
|
||
|
}
|
||
|
}
|