Skip to content
Snippets Groups Projects
Commit 2c0e13ad authored by Pavel Šeda's avatar Pavel Šeda
Browse files

Merge branch '69-expiration-date-cannot-be-edited' into 'master'

A change of expiration date will take effect.

Closes #69

See merge request kypo2/services-and-portlets/kypo2-user-and-group!66
parents 3b158742 50e7f44e
No related branches found
No related tags found
No related merge requests found
......@@ -88,6 +88,7 @@ public class IDMGroupServiceImpl implements IDMGroupService {
}
groupInDatabase.setDescription(group.getDescription());
groupInDatabase.setName(group.getName());
groupInDatabase.setExpirationDate(group.getExpirationDate());
return groupRepository.save(groupInDatabase);
} else {
throw new ExternalSourceException("Given idm group is external therefore it cannot be updated");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment