Files
habitica/website/server/middlewares/ensureDevelpmentMode.js
2019-10-02 19:45:27 +02:00

13 lines
223 B
JavaScript

import nconf from 'nconf';
import {
NotFound,
} from '../libs/errors';
export default function ensureDevelpmentMode (req, res, next) {
if (nconf.get('IS_PROD')) {
next(new NotFound());
} else {
next();
}
}