feature #10

Merged
XiaoLFeng merged 15 commits from feature into master 2023-06-30 16:27:18 +08:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit 7bf090d6e6 - Show all commits

View File

@ -386,8 +386,7 @@ public function apiCustomBlogCheck(HttpRequest $request): JsonResponse
/**
* 站长认证邮件发送模板
*
* @param array $data
* @return void
* @return void 发送链接,不做返回内容
*/
private function apiCustomBlogCheckSendEmail(): void
{

View File

@ -46,5 +46,6 @@
Route::post('add',[Link::class,'apiCustomAdd'])->name('api.link.custom.add');
Route::get('search',[Link::class, 'apiCustomSearch'])->name('api.link.custom.search');
Route::post('blogCheck',[Link::class,'apiCustomBlogCheck'])->name('api.link.custom.blogCheck');
Route::post('blogVerify',[Link::class,'apiCustomBlogVerify'])->name('api.link.custom.blogVerify');
});
});