Skip to content

Commit

Permalink
#279 Fix events generation (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtufisi authored Dec 10, 2024
1 parent 31b9af6 commit 65d2c8f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ private static void handleOrganizationMembership(
org.grantMembership(context.getUser());
context
.getEvent()
.clone()
.user(context.getUser())
.detail("joined_organization", org.getId())
.success();
Expand All @@ -117,6 +118,7 @@ private static void handleOrganizationMembership(
org.grantMembership(context.getUser());
context
.getEvent()
.clone()
.user(context.getUser())
.detail("joined_organization", org.getId())
.success();
Expand Down

0 comments on commit 65d2c8f

Please sign in to comment.