from django.urls import path from . import views urlpatterns = [ path('authUser', views.authUser), path('user', views.users), path('user/', views.user), path('thread', views.threads), path('thread/', views.thread), path('thread//subject', views.subjects), path('subject/', views.subject), path('subject//comment', views.comments), path('comment/', views.comment), path('comment//rating', views.ratings), path('rating/', views.rating), path('exchange/', views.exchangeGraph), path('exchange//prognosis/', views.exchangePrognosis), path('user//transaction', views.transactions), path('transaction/', views.transaction), path('transaction/all', views.transactionsAll), path('user//trigger', views.triggers), path('trigger/', views.trigger), path('trigger/all', views.triggersAll), path('user//notification', views.notifications), path('notification/', views.notification) ]