This commit is contained in:
Joseph Cohen
2015-03-11 16:10:25 -06:00
parent 3c46387dd8
commit 912077538f
2 changed files with 2 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
Route::group([
'prefix' => 'auth',
'namespace' => 'CachetHQ\Cachet\Http\Controllers'
'namespace' => 'CachetHQ\Cachet\Http\Controllers',
], function () {
Route::group(['before' => 'has_setting:app_name'], function () {
// Login routes

View File

@@ -2,10 +2,9 @@
namespace CachetHQ\Cachet\Http\Controllers;
use CachetHQ\Cachet\Facades\Setting;
use CachetHQ\Cachet\Models\Incident;
use CachetHQ\Cachet\Models\IncidentTemplate;
use CachetHQ\Cachet\Facades\Setting;
use Carbon\Carbon;
use GrahamCampbell\Binput\Facades\Binput;
use Illuminate\Routing\Controller;
use Illuminate\Support\Facades\Auth;