Merge pull request #140 from Kitzanos/update-get-all-user-api

Modified the API parameter of get all users
This commit is contained in:
nishainnogent
2024-12-20 16:43:39 +05:30
committed by GitHub
6 changed files with 17 additions and 15 deletions

View File

@@ -16,7 +16,7 @@ public interface UserRepository extends JpaRepository<UserEntity, Long> {
boolean existsByEmailIgnoreCaseAndHubUniqueUuid(String email, String hubUuid);
List<UserEntity> findByRoleEntityIdAndHubId(Long roleId, Long hubId);
List<UserEntity> findByRoleEntityIdInAndHubId(List<Long> roleIds, Long hubId);
List<UserEntity> findByHubId(Long hubId);