habitica/website/server/middlewares/ensureDevelopmentMode.js

13 lines
282 B
JavaScript
Raw Permalink Normal View History

2024-05-21 14:11:18 +00:00
import nconf from 'nconf';
import {
NotFound,
} from '../libs/errors';
export default function ensureDevelopmentMode (req, res, next) {
if (nconf.get('DEBUG_ENABLED') && nconf.get('BASE_URL') !== 'https://habitica.com') {
next();
} else {
next(new NotFound());
}
}