mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-26 13:22:38 +00:00
13 lines
282 B
JavaScript
13 lines
282 B
JavaScript
|
|
import nconf from 'nconf';
|
||
|
|
import {
|
||
|
|
NotFound,
|
||
|
|
} from '../libs/errors';
|
||
|
|
|
||
|
|
export default function ensureDevelopmentMode (req, res, next) {
|
||
|
|
if (nconf.get('DEBUG_ENABLED') && nconf.get('BASE_URL') !== 'https://habitica.com') {
|
||
|
|
next();
|
||
|
|
} else {
|
||
|
|
next(new NotFound());
|
||
|
|
}
|
||
|
|
}
|