from django.urls import path from django_kepi.views import * from things_for_testing.views import * urlpatterns = [ path('obj/', ActivityObjectView.as_view()), path('thing-users', ThingUserCollection.as_view()), path('users//followers', ThingUserFollowersView.as_view()), path('users//following', ThingUserFollowingView.as_view()), path('users//inbox', InboxView.as_view()), path('sharedInbox', InboxView.as_view()), ]