1
0
Fork 0

Send messages

This commit is contained in:
Mouse Reeve 2020-01-26 20:57:48 -08:00
parent b9d933e3b1
commit dd554ca6ca
6 changed files with 106 additions and 57 deletions

View file

@ -26,8 +26,8 @@ urlpatterns = [
path('shelve/<str:shelf_id>/<int:book_id>', views.shelve),
path('follow/', views.follow),
path('unfollow/', views.unfollow),
path('api/u/<str:username>', federation.actor),
path('api/<str:username>/inbox', federation.inbox),
path('api/<str:username>/outbox', federation.outbox),
path('api/u/<str:username>', federation.get_actor),
path('api/u/<str:username>/inbox', federation.inbox),
path('api/u/<str:username>/outbox', federation.outbox),
path('.well-known/webfinger', federation.webfinger),
]