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:
Manish Verma
2018-08-14 17:30:53 +05:30
parent 4d86816ee6
commit 21f783f72b
7 changed files with 78 additions and 121 deletions

View File

@@ -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']);