Commit c20d0d36 authored by Greg Messner's avatar Greg Messner
Browse files

Added created_at property (#594)

parent 33f5708a
...@@ -66,6 +66,7 @@ public class Group { ...@@ -66,6 +66,7 @@ public class Group {
private Statistics statistics; private Statistics statistics;
private List<Project> projects; private List<Project> projects;
private List<Project> sharedProjects; private List<Project> sharedProjects;
private Date createdAt;
@JsonSerialize(using = JacksonJson.DateOnlySerializer.class) @JsonSerialize(using = JacksonJson.DateOnlySerializer.class)
private Date markedForDeletionOn; private Date markedForDeletionOn;
...@@ -206,6 +207,14 @@ public class Group { ...@@ -206,6 +207,14 @@ public class Group {
this.markedForDeletionOn = markedForDeletionOn; this.markedForDeletionOn = markedForDeletionOn;
} }
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
public Group withId(Integer id) { public Group withId(Integer id) {
this.id = id; this.id = id;
return this; return this;
......
...@@ -52,7 +52,8 @@ ...@@ -52,7 +52,8 @@
"open_issues_count": 3, "open_issues_count": 3,
"public_jobs": true, "public_jobs": true,
"shared_with_groups": [], "shared_with_groups": [],
"request_access_enabled": false "request_access_enabled": false,
"created_at": "2020-01-15T12:36:29.590Z"
}, },
{ {
"id": 6, "id": 6,
......
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