Skip to content

Commit

Permalink
feat: fix Group.Users should be string array bug (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
rookies233 authored Sep 27, 2024
1 parent 212bf10 commit 546f85b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/casbin/casdoor/entity/Group.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class Group {
public String type;
public String parentId;
public boolean isTopGroup;
public List<User> users;
public List<String> users;
public String title;
public String key;
public List<Group> children;
Expand Down

0 comments on commit 546f85b

Please sign in to comment.