Skip to content

Commit

Permalink
LPD-1181 Regen
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed May 10, 2024
1 parent edef5e6 commit 04c0268
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@ public PersistedModel createPersistedModel(Serializable primaryKeyObj)

public void deleteFaroUsers(long groupId);

public void deleteFaroUsersByLiveUserId(long liveUserId)
throws PortalException;

/**
* @throws PortalException
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,12 @@ public static void deleteFaroUsers(long groupId) {
getService().deleteFaroUsers(groupId);
}

public static void deleteFaroUsersByLiveUserId(long liveUserId)
throws PortalException {

getService().deleteFaroUsersByLiveUserId(liveUserId);
}

/**
* @throws PortalException
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,13 @@ public void deleteFaroUsers(long groupId) {
_faroUserLocalService.deleteFaroUsers(groupId);
}

@Override
public void deleteFaroUsersByLiveUserId(long liveUserId)
throws com.liferay.portal.kernel.exception.PortalException {

_faroUserLocalService.deleteFaroUsersByLiveUserId(liveUserId);
}

/**
* @throws PortalException
*/
Expand Down

0 comments on commit 04c0268

Please sign in to comment.