feat: add users to getGroups() and getGroup() APIs

This commit is contained in:
Yang Luo
2024-03-22 23:32:30 +08:00
parent 6073a0f63d
commit 948fa911e2
4 changed files with 104 additions and 13 deletions

View File

@ -195,6 +195,17 @@ class GroupListPage extends BaseListPage {
</Link>;
},
},
{
title: i18next.t("general:Users"),
dataIndex: "users",
key: "users",
// width: "200px",
sorter: true,
...this.getColumnSearchProps("users"),
render: (text, record, index) => {
return Setting.getTags(text, "users");
},
},
{
title: i18next.t("general:Action"),
dataIndex: "",