Add payouts
This commit is contained in:
22
app/urls.py
22
app/urls.py
@@ -27,6 +27,7 @@ from core.views import (
|
||||
base,
|
||||
linkgroups,
|
||||
notifications,
|
||||
payouts,
|
||||
platforms,
|
||||
profit,
|
||||
wallets,
|
||||
@@ -241,6 +242,27 @@ urlpatterns = [
|
||||
wallets.WalletDelete.as_view(),
|
||||
name="wallet_delete",
|
||||
),
|
||||
# Payouts
|
||||
path(
|
||||
"payouts/<str:type>/",
|
||||
payouts.PayoutList.as_view(),
|
||||
name="payouts",
|
||||
),
|
||||
path(
|
||||
"payouts/<str:type>/create/",
|
||||
payouts.PayoutCreate.as_view(),
|
||||
name="payout_create",
|
||||
),
|
||||
path(
|
||||
"payouts/<str:type>/update/<str:pk>/",
|
||||
payouts.PayoutUpdate.as_view(),
|
||||
name="payout_update",
|
||||
),
|
||||
path(
|
||||
"payouts/<str:type>/delete/<str:pk>/",
|
||||
payouts.PayoutDelete.as_view(),
|
||||
name="payout_delete",
|
||||
),
|
||||
# Link groups
|
||||
path(
|
||||
"links/<str:type>/",
|
||||
|
||||
Reference in New Issue
Block a user