Explorar el Código

修复UserController的路由问题

kely hace 11 meses
padre
commit
b5f6570d94
Se han modificado 1 ficheros con 16 adiciones y 0 borrados
  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)
+    {
+
+    }
 }