mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-29 06:07:32 +00:00
13 lines
234 B
JavaScript
13 lines
234 B
JavaScript
|
|
import nconf from 'nconf';
|
||
|
|
import {
|
||
|
|
NotFound,
|
||
|
|
} from '../libs/errors';
|
||
|
|
|
||
|
|
export default function ensureTimeTravelMode (req, res, next) {
|
||
|
|
if (nconf.get('ENABLE_TIME_TRAVEL')) {
|
||
|
|
next();
|
||
|
|
} else {
|
||
|
|
next(new NotFound());
|
||
|
|
}
|
||
|
|
}
|