mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-04 04:59:40 +00:00
13 lines
236 B
JavaScript
13 lines
236 B
JavaScript
|
|
import nconf from 'nconf';
|
||
|
|
import {
|
||
|
|
NotFound,
|
||
|
|
} from '../../libs/api-v3/errors';
|
||
|
|
|
||
|
|
module.exports = function ensureDevelpmentMode (req, res, next) {
|
||
|
|
if (nconf.get('IS_PROD')) {
|
||
|
|
next(new NotFound());
|
||
|
|
} else {
|
||
|
|
next();
|
||
|
|
}
|
||
|
|
};
|