X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/6d42bc478e3d1bd90eb294464748c21e4de0fc63..8952b9530d943655e552ea660c47e850123c5105:/src/social/api/urls.py diff --git a/src/social/api/urls.py b/src/social/api/urls.py index 2ed2d66d1..2b20ab8a1 100644 --- a/src/social/api/urls.py +++ b/src/social/api/urls.py @@ -1,16 +1,16 @@ # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # -from django.conf.urls import include, url +from django.urls import path from stats.utils import piwik_track_view from . import views urlpatterns = [ - url(r'^like/(?P[a-z0-9-]+)/$', + path('like//', piwik_track_view(views.LikeView.as_view()), name='social_api_like'), - url(r'^shelf/(?P[a-z]+)/$', + path('shelf//', piwik_track_view(views.ShelfView.as_view()), name='social_api_shelf'), ]