Skip to content

Commit

Permalink
Merge branch 'hotfix/2.6.3' into CPCN-651
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkLark86 committed Feb 29, 2024
2 parents b85a646 + 7a84d87 commit ee10373
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/planning/assignments/assignments.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ def on_updated(self, updates, original):
).get("user") != (updates.get("assigned_to") or {}).get("user"):
self.publish_planning(original.get("planning_item"))

def system_update(self, id, updates, original):
super().system_update(id, updates, original)
def system_update(self, id, updates, original, **kwargs):
super().system_update(id, updates, original, **kwargs)
if self.is_assignment_being_activated(updates, original):
doc = deepcopy(original)
doc.update(updates)
Expand Down

0 comments on commit ee10373

Please sign in to comment.