1 # This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
4 from django.urls import path
5 from stats.utils import piwik_track_view
10 path('like/<slug:slug>/',
11 piwik_track_view(views.LikeView2.as_view()),
12 name='social_api_like'),
13 path('likes/', views.LikesView.as_view()),
14 path('my-likes/', views.MyLikesView.as_view()),