chapeau/test_urls.py

11 wiersze
293 B
Python

from django.urls import path
from django_kepi.views import *
from things_for_testing.views import *
urlpatterns = [
path('obj/<id>', ActivityObjectView.as_view()),
path('user/<username>/followers/', FollowersView.as_view()),
path('thing-users', ThingUserCollection.as_view()),
]