From fff35552c60fffd25400c4968611bfd8666c6611 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Thu, 18 Dec 2014 22:53:18 +0000 Subject: [PATCH] Comment for setup route --- app/routes/app.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/routes/app.php b/app/routes/app.php index c4e5c88d..f74a0179 100644 --- a/app/routes/app.php +++ b/app/routes/app.php @@ -6,6 +6,7 @@ Route::group(['before' => 'has_setting:app_name'], function() { Route::get('/incident/{incident}', 'HomeController@showIncident'); }); +// Setup route. Route::group(['before' => 'no_setup:app_name'], function() { Route::controller('/setup', 'SetupController'); });