chapeau/django_kepi/urls.py

13 wiersze
439 B
Python

from django.urls import path
from django_kepi.views import *
urlpatterns = [
path('<uuid:id>', KepiView.as_view()),
path('users/<str:name>', KepiView.as_view()),
path('users/<str:name>/inbox', InboxView.as_view()),
path('users/<str:name>/followers', FollowersView.as_view()),
path('users/<str:name>/following', FollowingView.as_view()),
path('sharedInbox', InboxView.as_view()),
]