Add unified close endpoint for Razorpay requests
All checks were successful
build-and-deploy / build-deploy (push) Successful in 34s

This commit is contained in:
androidlover5842
2026-02-01 14:25:50 +05:30
parent 4e89336652
commit 5e9e0d0742
3 changed files with 120 additions and 1 deletions

View File

@@ -13,4 +13,6 @@ interface RazorpayPaymentLinkRequestRepo : JpaRepository<RazorpayPaymentLinkRequ
): RazorpayPaymentLinkRequest?
fun findByBookingIdOrderByCreatedAtDesc(bookingId: UUID): List<RazorpayPaymentLinkRequest>
fun findTopByPaymentLinkIdOrderByCreatedAtDesc(paymentLinkId: String): RazorpayPaymentLinkRequest?
}