File size: 234 Bytes
3206347
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import appConfig from '../config/app.js';

export const checkIsCloud = async (request, response, next) => {
  if (appConfig.isCloud) {
    next();
  } else {
    return response.status(404).end();
  }
};

export default checkIsCloud;