Skip to content
Snippets Groups Projects
Commit f1ad6a24 authored by Andreas Gärtner's avatar Andreas Gärtner
Browse files

Task #15903: Trigger learning progress change on PiRoundResetEvent.

parent cd52f326
Branches
Tags
No related merge requests found
......@@ -149,6 +149,12 @@ public class LearningProgressFactory implements NovaEventVisitor, ILearningProgr
this.publisher.publishEvent(new ChangeLearningProgressEvent(this, event.getSession()));
}
@CacheEvict(value = "learningprogress", key = "#event.Session")
@Override
public void visit(PiRoundResetEvent event) {
this.publisher.publishEvent(new ChangeLearningProgressEvent(this, event.getSession()));
}
@Override
public void visit(NewFeedbackEvent newFeedbackEvent) {}
......@@ -170,9 +176,6 @@ public class LearningProgressFactory implements NovaEventVisitor, ILearningProgr
@Override
public void visit(PiRoundCancelEvent piRoundCancelEvent) {}
@Override
public void visit(PiRoundResetEvent piRoundResetEvent) {}
@Override
public void visit(NewSessionEvent event) {}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment