CS fixes
This commit is contained in:
+2
-2
@@ -1,13 +1,13 @@
|
||||
<?php
|
||||
|
||||
// Prevent access until the app is setup.
|
||||
Route::group(['before' => 'has_setting:app_name'], function() {
|
||||
Route::group(['before' => 'has_setting:app_name'], function () {
|
||||
Route::get('/', ['as' => 'status-page', 'uses' => 'HomeController@showIndex']);
|
||||
Route::get('/incident/{incident}', 'HomeController@showIncident');
|
||||
});
|
||||
|
||||
// Setup route.
|
||||
Route::group(['before' => 'is_setup'], function() {
|
||||
Route::group(['before' => 'is_setup'], function () {
|
||||
Route::controller('/setup', 'SetupController');
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user