mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-07-07 18:26:30 +00:00
chore(payment): replace DeletePaymentView with CancelPaymentView in payment URLs 🔧
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 4m20s
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 4m20s
This commit is contained in:
@ -5,7 +5,7 @@ from .views import (
|
||||
VerifyPaymentView,
|
||||
PaymentDetailAPIView,
|
||||
UpdatePaymentAPIView,
|
||||
DeletePaymentView,
|
||||
CancelPaymentView,
|
||||
ListCreateTopupView,
|
||||
VerifyTopupPaymentAPIView,
|
||||
TopupDetailAPIView,
|
||||
@ -21,9 +21,9 @@ urlpatterns = [
|
||||
name="update-payment",
|
||||
),
|
||||
path(
|
||||
"payment/<str:pk>/delete/",
|
||||
DeletePaymentView.as_view(),
|
||||
name="delete-payment",
|
||||
"payment/<str:pk>/cancel/",
|
||||
CancelPaymentView.as_view(),
|
||||
name="cancel-payment",
|
||||
),
|
||||
path(
|
||||
"payment/<str:pk>/verify/", VerifyPaymentView.as_view(), name="verify-payment"
|
||||
|
Reference in New Issue
Block a user