helper script
[wolnelektury.git] / src / social / api / urls2.py
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.
3 #
4 from django.urls import path
5 from stats.utils import piwik_track_view
6 from . import views
7
8
9 urlpatterns = [
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()),
15 ]
16
17