Toggle navigation
Toggle navigation
This project
Loading...
Sign in
OnePoem
/
OnePoem-Server
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
李帅
2022-06-10 19:44:34 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
58569288c19bc81329e8937d58ff693d293dcff0
58569288
1 parent
c638d5cb
1.优化后台显示。
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
routes/api.php
routes/api.php
View file @
5856928
...
...
@@ -39,6 +39,9 @@ Route::prefix('v1')->namespace('App\Http\Controllers\V1')->group(function (Route
/** 视频上传 */
$api
->
post
(
'/upload/video'
,
'SettingController@uploadVideo'
);
/** 会员页 */
$api
->
get
(
'/membership'
,
'MembershipController@index'
);
});
...
...
@@ -74,9 +77,6 @@ Route::prefix('v1')->namespace('App\Http\Controllers\V1')->middleware('auth:sanc
/** 模板 */
$api
->
apiResource
(
'/template'
,
'TemplateController'
);
/** 会员页 */
$api
->
apiResource
(
'/membership'
,
'MembershipController'
);
/** 创建订单 */
$api
->
apiResource
(
'/order'
,
'OrderController'
);
...
...
Please
register
or
login
to post a comment