mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-08-19 12:24:01 +00:00
12 lines
306 B
PHP
12 lines
306 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('unauthorized', ['as' => 'unauthorized', function() {
|
|
return response('Unauthorized Access', 401);
|
|
}]);
|
|
|
|
Route::group(['prefix' => 'swagger-doc'], function () {
|
|
Route::get('/', ['as' => 'swagger.app', 'uses' => 'SwaggerController@index']);
|
|
});
|