From 2bfb2693add42274d3268f260217d7dc823d605f Mon Sep 17 00:00:00 2001 From: wanglei <34475144@qqcom> Date: Wed, 29 Oct 2025 17:32:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E9=9C=80=E8=A6=81=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=E7=9A=84=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- conf/system/application.conf | 4 ++++ conf/system/auth.conf | 4 ++++ conf/system/organization.conf | 4 ++++ conf/system/permission.conf | 4 ++++ conf/system/role.conf | 4 ++++ 5 files changed, 20 insertions(+) create mode 100644 conf/system/application.conf create mode 100644 conf/system/auth.conf create mode 100644 conf/system/organization.conf create mode 100644 conf/system/permission.conf create mode 100644 conf/system/role.conf diff --git a/conf/system/application.conf b/conf/system/application.conf new file mode 100644 index 0000000..c80204c --- /dev/null +++ b/conf/system/application.conf @@ -0,0 +1,4 @@ +#API接口文件 +location /api/system/applications { + content_by_lua_file '/home/frankly/work/AuthPlatform/src/api/system/application.lua'; +} \ No newline at end of file diff --git a/conf/system/auth.conf b/conf/system/auth.conf new file mode 100644 index 0000000..287e670 --- /dev/null +++ b/conf/system/auth.conf @@ -0,0 +1,4 @@ +#API接口文件 +location /api/system/auth { + content_by_lua_file '/home/frankly/work/AuthPlatform/src/api/system/auth.lua'; +} \ No newline at end of file diff --git a/conf/system/organization.conf b/conf/system/organization.conf new file mode 100644 index 0000000..9acb9e4 --- /dev/null +++ b/conf/system/organization.conf @@ -0,0 +1,4 @@ +#API接口文件 +location /api/system/organizations { + content_by_lua_file '/home/frankly/work/AuthPlatform/src/api/system/organization.lua'; +} \ No newline at end of file diff --git a/conf/system/permission.conf b/conf/system/permission.conf new file mode 100644 index 0000000..a4d2de2 --- /dev/null +++ b/conf/system/permission.conf @@ -0,0 +1,4 @@ +#API接口文件 +location /api/system/permissions { + content_by_lua_file '/home/frankly/work/AuthPlatform/src/api/system/permission.lua'; +} \ No newline at end of file diff --git a/conf/system/role.conf b/conf/system/role.conf new file mode 100644 index 0000000..b056e5e --- /dev/null +++ b/conf/system/role.conf @@ -0,0 +1,4 @@ +#API接口文件 +location /api/system/roles { + content_by_lua_file '/home/frankly/work/AuthPlatform/src/api/system/role.lua'; +} \ No newline at end of file