You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: community/community-library/src/main/java/org/silverpeas/components/community/repository/CommunityOfUsersJpaRepository.java
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,8 @@
32
32
importjava.util.List;
33
33
importjava.util.Optional;
34
34
35
+
importstaticjava.lang.Integer.parseInt;
36
+
35
37
/**
36
38
* Implementation of the repository of Community of users by extending the
37
39
* {@link org.silverpeas.core.persistence.datasource.repository.jpa.BasicJpaEntityRepository} base
@@ -64,6 +66,6 @@ public List<CommunityOfUsers> getAllByUserId(final String userId) {
64
66
"select c from CommunityOfUsers c inner join CommunityMembership m on m.community = c " +
65
67
"where m.userId = :userId and m.status = org.silverpeas.components.community.model" +
0 commit comments