Merge with Xamora

This commit is contained in:
2024-01-24 16:14:15 +01:00
15 changed files with 798 additions and 153 deletions

View File

@ -11,5 +11,6 @@ urlpatterns = [
path("block", views.BlocksView.as_view(), name="block_page"),
path("block/<int:pk>", views.BlockView.as_view(), name="block_page"),
path("<str:username>", viewsets.ProfileViewSet.as_view({'get': 'retrieve'}), name="profile_page"),
path("friend", views.FriendsView.as_view(), name="friend_page"),
] + static("/static/avatars/", document_root="./avatars")