47 lines
2 KiB
PHP
Executable file
47 lines
2 KiB
PHP
Executable file
<?php
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| API Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here is where you can register API routes for your application. These
|
|
| routes are loaded by the RouteServiceProvider within a group which
|
|
| is assigned the "api" middleware group. Enjoy building your API!
|
|
|
|
|
*/
|
|
|
|
Route::post('login', 'API\UserController@login');
|
|
Route::get('test', 'API\UserController@test');
|
|
|
|
//Route::post('register', 'API\UserController@register');
|
|
|
|
Route::post('cms/search', 'API\CMSContentController@search');
|
|
Route::post('cms/keywords', 'API\CMSContentController@keywords');
|
|
Route::post('cms/header/info', 'API\CMSContentInfoController@headerInfo');
|
|
Route::get('cms/header/info', 'API\CMSContentInfoController@headerInfo');
|
|
|
|
// Navigation API Routes
|
|
Route::get('navigation/tree', 'API\NavigationController@getNavigationTree');
|
|
Route::get('navigation/tree/active', 'API\NavigationController@getActiveNavigationTree');
|
|
Route::get('navigation/tree/{rootId}', 'API\NavigationController@getNavigationSubTree');
|
|
Route::get('navigation/flat', 'API\NavigationController@getFlatNavigationList');
|
|
Route::get('navigation/breadcrumb/{pageId}', 'API\NavigationController@getBreadcrumb');
|
|
Route::post('navigation/cache/clear', 'API\NavigationController@clearCache');
|
|
|
|
Route::get('passolution/{lang}/{nat}/{destco}/{tdat}', 'API\CMSContentController@passolution');
|
|
Route::post('passolution/{lang}', 'API\CMSContentController@passolutionPost');
|
|
|
|
|
|
Route::post('booking/import', 'API\BookingController@import');
|
|
Route::get('booking/import', 'API\BookingController@import');
|
|
|
|
Route::group(['middleware' => 'auth:api'], function () {
|
|
Route::post('details', 'API\UserController@details');
|
|
Route::post('draft/{action}', 'API\DraftController@draft');
|
|
Route::post('load/{action}', 'API\LoaderController@load');
|
|
Route::post('fewo/{action}', 'API\FewoController@action');
|
|
Route::post('lead/{action}', 'API\LeadController@action');
|
|
});
|