We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5baa2d8 commit 9c16f0aCopy full SHA for 9c16f0a
src/main/java/com/redhat/labs/lodestar/models/Engagement.java
@@ -65,5 +65,6 @@ public class Engagement {
65
private String mapType;
66
@JsonbProperty("categories")
67
private Set<String> mapCategories;
68
+ private String name;
69
70
}
src/main/java/com/redhat/labs/lodestar/service/MigrationService.java
@@ -213,9 +213,11 @@ private String migrateEngagement(Engagement engagement) {
213
214
copy.setMapRegion(copy.getRegion());
215
copy.setMapType(copy.getType());
216
+ copy.setName(copy.getProjectName());
217
copy.setCategories(null);
218
copy.setRegion(null);
219
copy.setType(null);
220
+ copy.setProjectName(null);
221
222
copy.setHostingEnvironments(null);
223
copy.setEngagementUsers(null);
0 commit comments