mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
add 添加wiki部分路由
This commit is contained in:
parent
3ad3b0d315
commit
de2e1903f1
24
route/wikiRoute.php
Normal file
24
route/wikiRoute.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
* Wiki路由
|
||||
* @since 2019-08-12
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
|
||||
use think\facade\Route;
|
||||
|
||||
Route::group('wiki', function() {
|
||||
Route::rule(
|
||||
'Api/login', 'wiki/Api/login', 'post'
|
||||
);
|
||||
Route::group('Api', function() {
|
||||
Route::rule('login', 'wiki/Api/login', 'post');
|
||||
Route::rule('errorCode', 'wiki/Api/errorCode', 'get');
|
||||
Route::rule('groupList', 'wiki/Api/groupList', 'get');
|
||||
Route::rule('detail', 'wiki/Api/detail', 'get');
|
||||
Route::rule('logout', 'wiki/Api/logout', 'get');
|
||||
})->middleware(['WikiAuth']);
|
||||
|
||||
//MISS路由定义
|
||||
Route::miss('admin/Miss/index');
|
||||
})->middleware('AdminResponse');
|
Loading…
x
Reference in New Issue
Block a user