Bug fix update
Fix register page issue Removed dynamicity in statuses Removed dynamic status creation and deletion as system does not perform status change functionality correctly accordingly. The feature will only be available in premium versions. Bug fix in ticket reply from agent panel Bug fixed in assignment from new inbox
This commit is contained in:
@@ -14,6 +14,7 @@ Route::group(['middleware' => ['web']], function () {
|
||||
Route::group(['middleware' => 'update', 'middleware' => 'install'], function () {
|
||||
Auth::routes();
|
||||
Route::post('login', ['uses' => 'Auth\AuthController@postLogin', 'as' => 'post.login']);
|
||||
Route::post('auth/register', ['uses' => 'Auth\AuthController@postRegister', 'as' => 'post.register']);
|
||||
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']);
|
||||
|
Reference in New Issue
Block a user