mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-07-07 12:16:30 +00:00
feat(billing): Add delete functionality for topups and update creation logic with expiration time ✨
This commit is contained in:
@ -9,6 +9,7 @@ from .views import (
|
||||
ListCreateTopupView,
|
||||
VerifyTopupPaymentAPIView,
|
||||
TopupDetailAPIView,
|
||||
DeleteTopupView,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
@ -35,4 +36,9 @@ urlpatterns = [
|
||||
VerifyTopupPaymentAPIView.as_view(),
|
||||
name="verify-topup-payment",
|
||||
),
|
||||
path(
|
||||
"topup/<str:pk>/delete/",
|
||||
DeleteTopupView.as_view(),
|
||||
name="delete-topup",
|
||||
),
|
||||
]
|
||||
|
Reference in New Issue
Block a user