Files
habitica/website/server/middlewares/ensureDevelopmentMode.js
T
Phillip Thelen d2a0ab684a test fixes
2024-06-19 18:01:27 +02:00

14 lines
348 B
JavaScript

import nconf from 'nconf';
import {
NotFound,
} from '../libs/errors';
export default function ensureDevelopmentMode (req, res, next) {
console.log(nconf.get('DEBUG_ENABLED'), nconf.get('BASE_URL'));
if (nconf.get('DEBUG_ENABLED') && nconf.get('BASE_URL') !== 'https://habitica.com') {
next();
} else {
next(new NotFound());
}
}