Split setup routes and retur inline groups

This commit is contained in:
Joseph Cohen
2015-01-05 14:21:06 -06:00
parent 3b70060d09
commit 302d59f215
5 changed files with 41 additions and 53 deletions
+6
View File
@@ -0,0 +1,6 @@
<?php
// Setup route.
Route::group(['before' => 'is_setup', 'namespace' => 'CachetHQ\Cachet\Http\Controllers'], function () {
Route::controller('/setup', 'SetupController');
});