bookwyrm/fedireads/urls.py

39 lines
1.4 KiB
Python
Raw Normal View History

2020-01-25 06:32:41 +00:00
"""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
2020-01-26 20:14:27 +00:00
from fedireads import federation, openlibrary, views
2020-01-25 06:32:41 +00:00
urlpatterns = [
path('admin/', admin.site.urls),
2020-01-25 23:25:19 +00:00
path('', views.home),
path('login/', views.user_login),
path('logout/', views.user_logout),
2020-01-26 20:14:27 +00:00
path('user/<str:username>', views.user_profile),
2020-01-28 02:47:54 +00:00
path('book/<str:book_identifier>', views.book_page),
2020-01-28 03:57:17 +00:00
2020-01-28 02:47:54 +00:00
path('review/', views.review),
2020-01-27 01:55:02 +00:00
path('shelve/<str:shelf_id>/<int:book_id>', views.shelve),
2020-01-26 20:14:27 +00:00
path('follow/', views.follow),
path('unfollow/', views.unfollow),
2020-01-28 03:57:17 +00:00
path('search/', views.search),
2020-01-27 04:57:48 +00:00
path('api/u/<str:username>', federation.get_actor),
path('api/u/<str:username>/inbox', federation.inbox),
path('api/u/<str:username>/outbox', federation.outbox),
2020-01-26 20:14:27 +00:00
path('.well-known/webfinger', federation.webfinger),
2020-01-25 06:32:41 +00:00
]