Skip to content

Commit

Permalink
Gauldie/update dkg (#5565)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgauldie authored Nov 19, 2024
1 parent 49ffc3a commit af5ba82
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.RequiredArgsConstructor;
import lombok.experimental.Accessors;
import software.uncharted.terarium.hmiserver.annotations.TSModel;

Expand All @@ -27,5 +26,10 @@ public class DKG {
private String name;

@JsonAlias(DESCRIPTION)
private String description;
private String description = "";

public DKG(String curie, String name) {
this.curie = curie;
this.name = name;
}
}

0 comments on commit af5ba82

Please sign in to comment.