Files
habitica/website/server/middlewares/ensureDevelpmentMode.js
2024-05-17 14:14:04 -05:00

13 lines
235 B
JavaScript

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