X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/832bfbcc54cd38942d6df89e850d4268386d6241..8885fd14f5f040eb3aa69f1d705856f99a1fa572:/src/social/api/urls.py diff --git a/src/social/api/urls.py b/src/social/api/urls.py index 5c633d805..43036f63c 100644 --- a/src/social/api/urls.py +++ b/src/social/api/urls.py @@ -1,17 +1,16 @@ -# -*- coding: utf-8 -*- -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. 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'), ]