Protect dictionary from bots.
[wolnelektury.git] / src / dictionary / urls.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.contrib.auth.decorators import login_required
5 from django.urls import path
6 from dictionary.views import NotesView
7
8 urlpatterns = [
9     path('', login_required(NotesView.as_view()), name='dictionary_notes'),
10 ]