Commit 860c42ab authored by Tim Olshansky's avatar Tim Olshansky

Merge pull request #135 from tristanlins/feature-project-builds

Project builds
parents d4efbbe7 be327091
......@@ -45,6 +45,18 @@ public class GitlabProject {
@JsonProperty("wiki_enabled")
private boolean wikiEnabled;
@JsonProperty("builds_enabled")
private boolean buildsEnabled;
@JsonProperty("shared_runners_enabled")
private boolean sharedRunnersEnabled;
@JsonProperty("public_builds")
private boolean publicBuilds;
@JsonProperty("runners_token")
private String runnersToken;
@JsonProperty("created_at")
private Date createdAt;
......@@ -195,6 +207,38 @@ public class GitlabProject {
this.wikiEnabled = wikiEnabled;
}
public boolean isBuildsEnabled() {
return buildsEnabled;
}
public void setBuildsEnabled(boolean buildsEnabled) {
this.buildsEnabled = buildsEnabled;
}
public boolean isSharedRunnersEnabled() {
return sharedRunnersEnabled;
}
public void setSharedRunnersEnabled(boolean sharedRunnersEnabled) {
this.sharedRunnersEnabled = sharedRunnersEnabled;
}
public boolean hasPublicBuilds() {
return publicBuilds;
}
public void setPublicBuilds(boolean publicBuilds) {
this.publicBuilds = publicBuilds;
}
public String getRunnersToken() {
return runnersToken;
}
public void setRunnersToken(String runnersToken) {
this.runnersToken = runnersToken;
}
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