X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/8952b9530d943655e552ea660c47e850123c5105..59947fddf28d67c6822267c8a0fc28e13a6e9175:/src/infopages/urls.py

diff --git a/src/infopages/urls.py b/src/infopages/urls.py
old mode 100755
new mode 100644
index 233345a5f..230de17bd
--- a/src/infopages/urls.py
+++ b/src/infopages/urls.py
@@ -1,10 +1,11 @@
-# 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.urls import path
+from annoy.utils import banner_exempt
 from . import views
 
 
 urlpatterns = [
-    path('<slug>/', views.infopage, name='infopage'),
+    path('<slug>/', banner_exempt(views.infopage), name='infopage'),
 ]