dev fix name for parameters
Test Workflow / test (push) Successful in 2s

This commit is contained in:
vladp
2026-02-09 14:15:29 +07:00
parent 2bba70e583
commit 27a8766171
2 changed files with 4 additions and 1 deletions
@@ -18,6 +18,9 @@ public interface ReferralJpaRepository extends JpaRepository<Referral, Long> {
List<Referral> findByInviterId(Long inviterId);
@Query("SELECT r FROM Referral r WHERE r.inviterId = :inviterId AND r.isActive = true")
List<Referral> findByInviterIdWhenUserActivated(Long inviterId, Pageable pageable);
@Query("SELECT r FROM Referral r WHERE r.inviterId = :inviterId")
List<Referral> findByInviterId(Long inviterId, Pageable pageable);
@Modifying