Skip to content

Commit

Permalink
Doubtnut - Added new function find all users by userid
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajjangid05 committed Mar 6, 2023
1 parent 2563585 commit 6a33ad6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/com/uci/dao/repository/XMessageRepository.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ public interface XMessageRepository extends ReactiveCassandraRepository<XMessage

@AllowFiltering
Flux<XMessageDAO> findAllByMessageIdAndUserIdInAndFromIdIn(String messageId, List<String> listUserId, List<String> listFromId);

@AllowFiltering
Flux<XMessageDAO> findAllByUserId(String userID);
}


0 comments on commit 6a33ad6

Please sign in to comment.