Skip to content

Commit

Permalink
Moved caffeine drip route into web route group
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebronner committed Jan 24, 2016
1 parent 7d891aa commit 2b8a220
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Http/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@

use GeneaLabs\LaravelCaffeine\Http\Controllers\LaravelCaffeineController;

Route::get('genealabs/laravel-caffeine/drip', LaravelCaffeineController::class . '@drip');
Route::group(['middleware' => ['web']], function () {
Route::get('genealabs/laravel-caffeine/drip', LaravelCaffeineController::class . '@drip');
});

0 comments on commit 2b8a220

Please sign in to comment.