You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
310 B
JavaScript

'use strict';
const nconf = require('nconf');
const db = require('../database');
module.exports.ping = async function (req, res, next) {
try {
await db.getObject('config');
res.status(200).send(req.path === `${nconf.get('relative_path')}/sping` ? 'healthy' : '200');
} catch (err) {
next(err);
}
};