Allow viewing profit
This commit is contained in:
@@ -20,7 +20,7 @@ from django.contrib.auth.views import LogoutView
|
||||
from django.urls import include, path
|
||||
from two_factor.urls import urlpatterns as tf_urls
|
||||
|
||||
from core.views import ads, aggregators, banks, base, notifications, platforms
|
||||
from core.views import ads, aggregators, banks, base, notifications, platforms, profit
|
||||
|
||||
# from core.views.stripe_callbacks import Callback
|
||||
|
||||
@@ -185,4 +185,9 @@ urlpatterns = [
|
||||
ads.AdRedist.as_view(),
|
||||
name="ad_redist",
|
||||
),
|
||||
path(
|
||||
"profit/<str:type>/",
|
||||
profit.Profit.as_view(),
|
||||
name="profit",
|
||||
),
|
||||
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|
||||
|
||||
Reference in New Issue
Block a user