This commit is contained in:
root
2019-12-12 13:45:46 +08:00
parent 623a5c98e0
commit a78f6178bd
7 changed files with 113 additions and 5 deletions

View File

@ -44,6 +44,9 @@ Route::prefix('v1')
Route::post('user/update', 'Admin\\UserController@update');
// Stat
Route::get ('stat/dashboard', 'Admin\\StatController@dashboard');
// Notice
Route::get ('notice', 'Admin\\NoticeController@index');
Route::post('notice/save', 'Admin\\NoticeController@save');
});
// User
Route::prefix('user')
@ -73,6 +76,8 @@ Route::prefix('v1')
// Tutorial
Route::get ('tutorial/getSubscribeUrl', 'TutorialController@getSubscribeUrl');
Route::get ('tutorial/getAppleID', 'TutorialController@getAppleID');
// Notice
Route::get ('notice', 'NoticeController@index');
});
// Passport