API version2 update

Added get tcket lists master API

update
This commit is contained in:
Manish Verma
2018-08-23 15:32:59 +05:30
committed by Manish Verma
parent 8e006192b1
commit 8f4a43a723
3 changed files with 154 additions and 0 deletions

View File

@@ -61,3 +61,19 @@
*/
Route::post('fcmtoken', ['as' => 'fcmtoken', 'uses' => 'Common\PushNotificationController@fcmToken']);
});
/*
* ================================================================================================
* @version v1
* @access public
* @copyright (c) 2016, Ladybird web solution
* @author Manish Verma<manish.verma@ladybirdweb.com>
* @name Faveo
*/
Route::group(['prefix' => 'api/v2'], function () {
/*
* Helpdesk
*/
Route::group(['prefix' => 'helpdesk'], function () {
Route::get('tickets', '\App\Api\v2\TicketController@getTickets');
});
});