Skip to content

Commit 546f85b

Browse files
authored
feat: fix Group.Users should be string array bug (#84)
1 parent 212bf10 commit 546f85b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/casbin/casdoor/entity/Group.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class Group {
2727
public String type;
2828
public String parentId;
2929
public boolean isTopGroup;
30-
public List<User> users;
30+
public List<String> users;
3131
public String title;
3232
public String key;
3333
public List<Group> children;

0 commit comments

Comments
 (0)