1

remove fontawesome + fix links + events modify cache + fix search

This commit is contained in:
Christoph
2020-04-16 15:24:08 +02:00
parent c460a3a20b
commit 319b073e66
19 changed files with 165 additions and 45 deletions

View File

@ -7,6 +7,7 @@ import lombok.extern.log4j.Log4j2;
import mops.gruppen2.domain.exception.NoAccessException;
import mops.gruppen2.domain.model.group.Group;
import mops.gruppen2.domain.model.group.wrapper.Title;
import mops.gruppen2.infrastructure.GroupCache;
import javax.validation.Valid;
import java.util.UUID;
@ -27,6 +28,9 @@ public class SetTitleEvent extends Event {
this.title = title;
}
@Override
protected void updateCache(GroupCache cache, Group group) {}
@Override
protected void applyEvent(Group group) throws NoAccessException {
group.setTitle(exec, title);