first commit
This commit is contained in:
10
metrics/urls.py
Normal file
10
metrics/urls.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
app_name = 'metrics'
|
||||
|
||||
urlpatterns = [
|
||||
path('api/track/bot/', views.track_bot_click, name='track_bot'),
|
||||
path('api/track/channel/', views.track_channel_click, name='track_channel'),
|
||||
path('', views.dashboard, name='dashboard'),
|
||||
]
|
||||
Reference in New Issue
Block a user