added logic for updating user profile plus other bug fixes
This commit is contained in:
@@ -29,6 +29,9 @@ Route::get('loggingtest', 'UtilityController@loggingTest');
|
||||
|
||||
Route::get('notifytest', 'UtilityController@sendEmailNotification');
|
||||
|
||||
Route::get('incoming_gmail', 'EmailController@indexInbox');
|
||||
Route::get('incoming_outlook', 'EmailController@index');
|
||||
|
||||
Route::get('loadcodes', 'UtilityController@loadShortCodes');
|
||||
Route::get('migrate_senders', 'UtilityController@migrateSenderids');
|
||||
Route::get('/testlog', function () {
|
||||
@@ -151,7 +154,11 @@ Route::group(['middleware' => ['checklogin', 'checkcurrentlylogged']], function(
|
||||
Route::get('supporttickets/list', 'SupportTicketsController@ticketlist');
|
||||
Route::resource('supporttickets', 'SupportTicketsController');
|
||||
|
||||
Route::post('profileupdate', 'SystemUsersController@profileupdate');
|
||||
Route::get('getprofile', 'SystemUsersController@profile_json');
|
||||
Route::get('staffmembers/profile/{staff_member_id}', 'StaffMembersController@profile');
|
||||
Route::get('staffmembers/getprofile', 'StaffMembersController@profile_json');
|
||||
|
||||
Route::get('staffmembers/index', 'StaffMembersController@index');
|
||||
Route::get('staffmembers/all', 'StaffMembersController@getstaffMemberssJson');
|
||||
Route::resource('staffmembers', 'StaffMembersController');
|
||||
|
||||
Reference in New Issue
Block a user