chapeau/test_urls.py

11 wiersze
293 B
Python
Czysty Zwykły widok Historia

2018-08-11 16:21:56 +00:00
from django.urls import path
from django_kepi.views import *
2018-08-27 17:53:52 +00:00
from things_for_testing.views import *
2018-08-11 16:21:56 +00:00
urlpatterns = [
2018-08-24 18:29:35 +00:00
path('obj/<id>', ActivityObjectView.as_view()),
2018-08-27 17:53:52 +00:00
path('user/<username>/followers/', FollowersView.as_view()),
path('thing-users', ThingUserCollection.as_view()),
2018-08-11 16:21:56 +00:00
]