added a ssl fix for form in /auth/login

added a new filter: SslFixFilter
added SslFixFilter to auth route
added SslFixFilter to RoutingServiceProvider
This commit is contained in:
Noah Bass
2015-01-08 17:07:48 -05:00
parent 20f744602a
commit 2a98b17a57
3 changed files with 29 additions and 0 deletions
+1
View File
@@ -4,6 +4,7 @@ Route::group(['before' => 'has_setting:app_name', 'namespace' => 'CachetHQ\Cache
// Login routes
Route::get('/auth/login', [
'before' => 'guest',
'after' => 'sslfix',
'as' => 'login',
'uses' => 'AuthController@showLogin',
]);