Laravel version update
Laravel version update
This commit is contained in:
@@ -12,10 +12,9 @@
|
||||
*/
|
||||
Route::group(['middleware' => ['web']], function () {
|
||||
Route::group(['middleware' => 'update', 'middleware' => 'install'], function () {
|
||||
Route::controllers([
|
||||
'auth' => 'Auth\AuthController',
|
||||
'password' => 'Auth\PasswordController',
|
||||
]);
|
||||
Auth::routes();
|
||||
Route::post('login', ['uses' => 'Auth\AuthController@postLogin', 'as' => 'post.login']);
|
||||
Route::get('auth/logout', ['uses' => 'Auth\AuthController@getLogout', 'as' => 'get.logout']);
|
||||
Route::get('social/login/redirect/{provider}/{redirect?}', ['uses' => 'Auth\AuthController@redirectToProvider', 'as' => 'social.login']);
|
||||
Route::get('social/login/{provider}', ['as'=>'social.login.callback', 'uses'=>'Auth\AuthController@handleProviderCallback']);
|
||||
Route::get('social-sync', ['as'=>'social.sync', 'uses'=>'Client\helpdesk\GuestController@sync']);
|
||||
|
Reference in New Issue
Block a user