mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-07-07 12:16:30 +00:00
feat(views): implement topup cancellation and update status to CANCELLED ✨
This commit is contained in:
@ -9,7 +9,7 @@ from .views import (
|
||||
ListCreateTopupView,
|
||||
VerifyTopupPaymentAPIView,
|
||||
TopupDetailAPIView,
|
||||
DeleteTopupView,
|
||||
CancelTopupView,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
@ -37,8 +37,8 @@ urlpatterns = [
|
||||
name="verify-topup-payment",
|
||||
),
|
||||
path(
|
||||
"topup/<str:pk>/delete/",
|
||||
DeleteTopupView.as_view(),
|
||||
name="delete-topup",
|
||||
"topup/<str:pk>/cancel/",
|
||||
CancelTopupView.as_view(),
|
||||
name="cancel-topup",
|
||||
),
|
||||
]
|
||||
|
Reference in New Issue
Block a user