|
@@ -22,7 +22,7 @@ module.exports = function(crowi, app) {
|
|
|
|
|
|
|
|
app.get('/' , middleware.applicationInstalled(), loginRequired(crowi, app, false) , page.pageListShow);
|
|
app.get('/' , middleware.applicationInstalled(), loginRequired(crowi, app, false) , page.pageListShow);
|
|
|
|
|
|
|
|
- app.get('/installer' , middleware.applicationNotInstalled() , installer.index);
|
|
|
|
|
|
|
+ app.get('/installer' , middleware.applicationNotInstalled() , middleware.checkSearchIndicesGenerated(crowi, app) , installer.index);
|
|
|
app.post('/installer/createAdmin' , middleware.applicationNotInstalled() , form.register , csrf, installer.createAdmin);
|
|
app.post('/installer/createAdmin' , middleware.applicationNotInstalled() , form.register , csrf, installer.createAdmin);
|
|
|
//app.post('/installer/user' , middleware.applicationNotInstalled() , installer.createFirstUser);
|
|
//app.post('/installer/user' , middleware.applicationNotInstalled() , installer.createFirstUser);
|
|
|
|
|
|