Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import org.exoplatform.services.organization.Membership;
import org.exoplatform.services.organization.impl.MembershipUpdateListener;
import org.exoplatform.services.security.ConversationRegistry;
import org.exoplatform.services.security.IdentityRegistry;

/**
* Created by The eXo Platform SARL Author : Dang Van Minh
Expand All @@ -31,8 +32,9 @@ public class WCMMembershipUpdateListener extends MembershipUpdateListener {
private ManageDriveService driveService_;

public WCMMembershipUpdateListener(ConversationRegistry conversationRegistry,
ManageDriveService driveService) {
super(conversationRegistry);
IdentityRegistry identityRegistry,
ManageDriveService driveService) {
super(conversationRegistry, identityRegistry);
driveService_ = driveService;
}

Expand Down