Skip to content

Commit

Permalink
made mipId updateable
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristian Goina committed May 13, 2024
1 parent 83a76a6 commit 59553fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ public List<EntityField<?>> updateableFieldValues() {
fieldList.add(new EntityField<>("alignmentSpace", false, alignmentSpace));
fieldList.add(new EntityField<>("libraryName", false, libraryName));
fieldList.add(new EntityField<>("publishedName", false, publishedName));
fieldList.add(new EntityField<>("mipId", false, getMipId()));
fieldList.add(new EntityField<>("sourceRefId", false, sourceRefId));
fieldList.add(new EntityField<>("neuronTerms", false, neuronTerms));
fieldList.add(new EntityField<>("updatedDate", false, getUpdatedDate()));
Expand All @@ -270,7 +271,6 @@ public List<EntityField<?>> updateableFieldValues() {
public List<EntityField<?>> updateableFieldsOnInsert() {
List<EntityField<?>> fieldList = new ArrayList<>();
fieldList.add(new EntityField<>("class", false, getEntityClass()));
fieldList.add(new EntityField<>("mipId", false, getMipId()));
fieldList.add(new EntityField<>("tags", true, getTags()));
return fieldList;
}
Expand Down

0 comments on commit 59553fd

Please sign in to comment.