mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-06-28 22:03:59 +00:00
Add UpdateUserWalletView and CustomUserByWalletBalanceSerializer for wallet balance updates
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 2m12s
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 2m12s
This commit is contained in:
@ -1,9 +1,19 @@
|
||||
# billing/urls.py
|
||||
from django.urls import path
|
||||
from .views import ListCreatePaymentView, VerifyPaymentView, PaymentDetailAPIView
|
||||
from .views import (
|
||||
ListCreatePaymentView,
|
||||
VerifyPaymentView,
|
||||
PaymentDetailAPIView,
|
||||
UpdatePaymentAPIView,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
path("payment/", ListCreatePaymentView.as_view(), name="create-payment"),
|
||||
path("payment/<str:pk>/", PaymentDetailAPIView.as_view(), name="retrieve-payment"),
|
||||
path(
|
||||
"payment/<str:pk>/update/",
|
||||
UpdatePaymentAPIView.as_view(),
|
||||
name="update-payment",
|
||||
),
|
||||
path("verify-payment/", VerifyPaymentView.as_view(), name="verify-payment"),
|
||||
]
|
||||
|
Reference in New Issue
Block a user