Fix crash while trying to unselect an idea as an author

Caused by missing @Transactional
This commit is contained in:
Andreas Svanberg 2024-11-19 14:27:53 +01:00
parent 419133cd39
commit 1a2486d958

@ -442,6 +442,7 @@ public class IdeaServiceImpl extends AbstractServiceImpl<Idea, Long> implements
}
@Override
@Transactional
public void studentUnselect(final Idea idea, final User student) {
unmatch(idea, student, new NotificationSource());
}