Handle Razorpay QR code webhook events
All checks were successful
build-and-deploy / build-deploy (push) Successful in 33s

This commit is contained in:
androidlover5842
2026-02-01 11:23:48 +05:30
parent 357f5337cd
commit e17eea741a
2 changed files with 17 additions and 0 deletions

View File

@@ -16,4 +16,6 @@ interface RazorpayQrRequestRepo : JpaRepository<RazorpayQrRequest, UUID> {
bookingId: UUID,
status: String
): RazorpayQrRequest?
fun findTopByQrIdOrderByCreatedAtDesc(qrId: String): RazorpayQrRequest?
}