Add basic setup page. NoSetupFilter now prevents access too.

This commit is contained in:
James Brooks
2014-11-24 09:58:32 +00:00
parent 5ef5f53e3b
commit ef5beddb07
6 changed files with 92 additions and 16 deletions

View File

@@ -5,4 +5,7 @@
Route::group(['before' => 'no_setup:app_name'], function() {
Route::get('/setup', 'SetupController@showSetup');
Route::group(['before' => 'csrf'], function() {
Route::post('/setup', 'SetupController@setupCachet');
});
});