application-installed.js 259 B

12345678910111213
  1. module.exports = (crowi) => {
  2. const { appService } = crowi;
  3. return async(req, res, next) => {
  4. const isInstalled = await appService.isDBInitialized();
  5. if (!isInstalled) {
  6. return res.redirect('/installer');
  7. }
  8. return next();
  9. };
  10. };