Skip to content

Commit

Permalink
additional info field (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcanoy authored Jul 1, 2020
1 parent c548775 commit 2b7e8ab
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/com/redhat/labs/omp/model/Engagement.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import org.bson.codecs.pojo.annotations.BsonId;
import org.bson.types.ObjectId;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.redhat.labs.omp.validation.ValidName;

import io.quarkus.mongodb.panache.PanacheMongoEntityBase;
Expand Down Expand Up @@ -68,6 +69,8 @@ public class Engagement extends PanacheMongoEntityBase {
private String ocpPersistentStorageSize;
@JsonbProperty("ocp_cluster_size")
private String ocpClusterSize;
@JsonProperty("additional_details")
private String additionalDetails;
private Launch launch;
@JsonbProperty("engagement_users")
private List<EngagementUser> engagementUsers;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package com.redhat.labs.omp.service;

public class ActiveGitSyncServiceTest {

}

0 comments on commit 2b7e8ab

Please sign in to comment.