Unverified Commit 192be8ba authored by Robert.Schreib's avatar Robert.Schreib
Browse files

Add the bot flag to the User class

parent 3d327e39
......@@ -8,6 +8,7 @@ import org.gitlab4j.api.utils.JacksonJson;
public class User extends AbstractUser<User> {
private String bio;
private Boolean bot;
private Boolean canCreateGroup;
private Boolean canCreateProject;
private Integer colorSchemeId;
......@@ -45,6 +46,14 @@ public class User extends AbstractUser<User> {
this.bio = bio;
}
public Boolean getBot() {
return bot;
}
public void setBot(Boolean bot) {
this.bot = bot;
}
public Boolean getCanCreateGroup() {
return canCreateGroup;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment