Browse Source

修复UserController的路由问题

kely 11 months ago
parent
commit
b5f6570d94
1 changed files with 16 additions and 0 deletions
  1. 16 0
      app/Http/Controllers/API/UserController.php

+ 16 - 0
app/Http/Controllers/API/UserController.php

@@ -58,4 +58,20 @@ class UserController extends Controller
 //        TODO:发送邮箱给目标用户
         return $this->created();
     }
+
+
+    public function destroy(string $id)
+    {
+
+    }
+
+    public function show(string $id)
+    {
+
+    }
+
+    public function update(CreateOrUpdateRequest $request, string $id)
+    {
+
+    }
 }