bookwyrm-mastodon/fedireads/urls.py

42 lines
1.6 KiB
Python
Raw Normal View History

2020-01-25 01:32:41 -05: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-28 01:49:56 -05:00
from fedireads import federation, views, settings
from django.conf.urls.static import static
2020-01-25 01:32:41 -05:00
urlpatterns = [
path('admin/', admin.site.urls),
2020-01-25 18:25:19 -05:00
path('', views.home),
path('login/', views.user_login),
path('logout/', views.user_logout),
2020-01-26 15:14:27 -05:00
path('user/<str:username>', views.user_profile),
2020-01-28 01:49:56 -05:00
path('user/<str:username>/edit/', views.user_profile_edit),
2020-01-27 21:47:54 -05:00
path('book/<str:book_identifier>', views.book_page),
2020-01-27 22:57:17 -05:00
2020-01-27 21:47:54 -05:00
path('review/', views.review),
2020-01-26 20:55:02 -05:00
path('shelve/<str:shelf_id>/<int:book_id>', views.shelve),
2020-01-26 15:14:27 -05:00
path('follow/', views.follow),
path('unfollow/', views.unfollow),
2020-01-27 22:57:17 -05:00
path('search/', views.search),
2020-01-28 01:49:56 -05:00
path('upload-avatar/', views.upload_avatar),
2020-01-27 22:57:17 -05:00
2020-01-26 23:57:48 -05: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 15:14:27 -05:00
path('.well-known/webfinger', federation.webfinger),
2020-01-28 01:49:56 -05:00
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)