"""fedireads URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/2.0/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: path('', views.home, name='home') Class-based views 1. Add an import: from other_app.views import Home 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') Including another URLconf 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ from django.contrib import admin from django.urls import path from fedireads import incoming, outgoing, views, settings from django.conf.urls.static import static urlpatterns = [ path('admin/', admin.site.urls), # federation endpoints path('/inbox', incoming.shared_inbox), path('user/.json', incoming.get_actor), path('user//inbox', incoming.inbox), path('user//outbox', outgoing.outbox), path('.well-known/webfinger', incoming.webfinger), # ui views path('', views.home), path('login/', views.user_login), path('logout/', views.user_logout), path('user/', views.user_profile), path('user//edit/', views.user_profile_edit), path('book/', views.book_page), # internal action endpoints path('review/', views.review), path('shelve//', views.shelve), path('follow/', views.follow), path('unfollow/', views.unfollow), path('search/', views.search), path('upload-avatar/', views.upload_avatar), ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)