From 703abc09b79e78df1427ff7aad87035005969a36 Mon Sep 17 00:00:00 2001 From: ksteinb Date: Tue, 17 Nov 2020 12:29:25 +0100 Subject: [PATCH] Update Application20.php findByUserId does not exist anymore change call to findByParticipant --- lib/AppInfo/Application20.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/AppInfo/Application20.php b/lib/AppInfo/Application20.php index 4e37e58ef..8f75799c2 100644 --- a/lib/AppInfo/Application20.php +++ b/lib/AppInfo/Application20.php @@ -133,7 +133,7 @@ class Application20 extends App implements IBootstrap { } // delete existing user assignments $assignmentMapper = $container->query(AssignmentMapper::class); - $assignments = $assignmentMapper->findByUserId($user->getUID()); + $assignments = $assignmentMapper->findByParticipant($user->getUID()); foreach ($assignments as $assignment) { $assignmentMapper->delete($assignment); }