Skip to content

Commit

Permalink
SHIBUI-2270
Browse files Browse the repository at this point in the history
Adding category and dsiplay type
  • Loading branch information
chasegawa committed Aug 30, 2022
1 parent d7228d0 commit 0e7c7aa
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,11 @@ private ShibPropertySet save(ShibPropertySet incomingPropSet) {
} else {
// get the entity from the map, update it, save to update list
ShibPropertySetting updatedEntity = existingPropMap.get(prop.getPropertyName());
// the value is really the only thing that should change...
updatedEntity.setConfigFile(prop.getConfigFile());
updatedEntity.setPropertyValue(prop.getPropertyValue());
updatedEntity.setCategory(prop.getCategory());
updatedEntity.setDisplayType(prop.getDisplayType());
propertiesToUpdate.add(shibPropertySettingRepository.save(updatedEntity));
}
});
Expand Down

0 comments on commit 0e7c7aa

Please sign in to comment.