mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
13 lines
235 B
JavaScript
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();
|
|
}
|
|
}
|