This commit is contained in:
Markos Gogoulos
2026-03-13 20:16:17 +02:00
parent 6279f8bd60
commit e33144b8d0
10 changed files with 20 additions and 55 deletions

View File

@@ -8,12 +8,12 @@ urlpatterns = [
re_path(r"^user/(?P<username>[\w@._-]*)/shared_with_me", views.shared_with_me, name="shared_with_me"),
re_path(r"^user/(?P<username>[\w@._-]*)/shared_by_me", views.shared_by_me, name="shared_by_me"),
re_path(
r"^user/(?P<username>[\w@.]*)/playlists$",
r"^user/(?P<username>[\w@._-]*)/playlists$",
views.view_user_playlists,
name="get_user_playlists",
),
re_path(
r"^user/(?P<username>[\w@.]*)/about$",
r"^user/(?P<username>[\w@._-]*)/about$",
views.view_user_about,
name="get_user_about",
),