delete user and authority info

This commit is contained in:
许晓东
2021-09-02 19:56:21 +08:00
parent 4f30511293
commit 75ee8bb2bf
11 changed files with 161 additions and 36 deletions

14
ui/src/utils/api.js Normal file
View File

@@ -0,0 +1,14 @@
export const KafkaAclApi = {
addKafkaUser: {
url: "/user",
method: "post",
},
deleteKafkaUser: {
url: "/user/auth",
method: "delete",
},
getAclList: {
url: "/acl/list",
method: "post",
},
};