mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-04-19 23:46:53 +00:00
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 3m15s
10 lines
374 B
Python
10 lines
374 B
Python
# billing/urls.py
|
|
from django.urls import path
|
|
from .views import ListCreatePaymentView, VerifyPaymentView
|
|
|
|
urlpatterns = [
|
|
path("payment/", ListCreatePaymentView.as_view(), name="create-payment"),
|
|
path("payment/<str:pk>/", ListCreatePaymentView.as_view(), name="retrieve-payment"),
|
|
path("verify-payment/", VerifyPaymentView.as_view(), name="verify-payment"),
|
|
]
|