Commit 28b85138 authored by Tristan Lins's avatar Tristan Lins

Add GitlabProject#buildEnabled

parent 45f63e74
......@@ -45,6 +45,9 @@ public class GitlabProject {
@JsonProperty("wiki_enabled")
private boolean wikiEnabled;
@JsonProperty("builds_enabled")
private boolean buildsEnabled;
@JsonProperty("created_at")
private Date createdAt;
......@@ -195,6 +198,14 @@ public class GitlabProject {
this.wikiEnabled = wikiEnabled;
}
public boolean isBuildsEnabled() {
return buildsEnabled;
}
public void setBuildsEnabled(boolean buildsEnabled) {
this.buildsEnabled = buildsEnabled;
}
public Date getCreatedAt() {
return createdAt;
}
......
Markdown is supported
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