1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 from django.urls import path
5 from django.views.decorators.cache import never_cache
10 path('lektura/<slug:slug>/lubie/', views.like_book, name='social_like_book'),
11 path('dodaj-tag/', views.AddSetView.as_view(), name='social_add_set_tag'),
12 path('usun-tag/', views.RemoveSetView.as_view(), name='social_remove_set_tag'),
13 path('moje-tagi/', views.my_tags, name='social_my_tags'),
14 path('lektura/<slug:slug>/nie_lubie/', views.unlike_book, name='social_unlike_book'),
15 path('lektura/<slug:slug>/polki/', never_cache(views.ObjectSetsFormView()), name='social_book_sets'),
16 path('polka/', views.my_shelf, name='social_my_shelf'),
17 path('ulubione/', views.my_liked),