Files
habitica/website/server/middlewares/ensureDevelpmentMode.js
Matteo Pagliazzi 45c31a2bcf Deprecate API v2 (#7761)
* deprecate api-v2

* remove v2 test helpers

* remove unused string
2016-07-16 19:56:18 +02:00

13 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();
}
};