Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/main/java/org/gitlab4j/api/models/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
public class User extends AbstractUser<User> {

private String bio;
private Boolean bot;
private Boolean canCreateGroup;
private Boolean canCreateProject;
private Integer colorSchemeId;
Expand Down Expand Up @@ -45,6 +46,14 @@ public void setBio(String bio) {
this.bio = bio;
}

public Boolean getBot() {
return bot;
}

public void setBot(Boolean bot) {
this.bot = bot;
}

public Boolean getCanCreateGroup() {
return canCreateGroup;
}
Expand Down