Browse Source

添加JWT 模块

程旭源 1 năm trước cách đây
mục cha
commit
7b75ee5e02
1 tập tin đã thay đổi với 9 bổ sung0 xóa
  1. 9 0
      admin_node/app/controller/api/User.ts

+ 9 - 0
admin_node/app/controller/api/User.ts

@@ -0,0 +1,9 @@
+
+class UserController extends ApiController {
+    register() {
+        const createRule = {
+            username: { type: 'string' },
+        };
+
+    }
+}