mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-03 08:21:07 +00:00
12 lines
226 B
JavaScript
12 lines
226 B
JavaScript
import nconf from 'nconf';
|
|
import {
|
|
NotFound,
|
|
} from '../libs/errors';
|
|
|
|
module.exports = function ensureDevelpmentMode (req, res, next) {
|
|
if (nconf.get('IS_PROD')) {
|
|
next(new NotFound());
|
|
} else {
|
|
next();
|
|
}
|
|
};
|