/
home
/
liman
/
liman-backend
/
conversation
/
File Upload :
llllll
Current File: /home/liman/liman-backend/conversation/urls.py
from django.urls import include, path from rest_framework import routers from .api import * from limanAuth.api import * router = routers.DefaultRouter() router.register('admin/conversation', AdminConversationView) router.register('my-conversation', MyConversationView) router.register('built-conversation', BuiltConversation) router.register('built-reminder', BuiltReminderView) urlpatterns = [ path('', include(router.urls)), path('my-conversation/table', MyConversationView.table), path('built-conversation/table', BuiltConversation.table), path('admin/conversation/table', AdminConversationView.table), ]
Copyright ©2k19 -
Hexid
|
Tex7ure