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.contrib.auth.decorators import login_required
5 from django.urls import path
6 from dictionary.views import NotesView
9 path('', login_required(NotesView.as_view()), name='dictionary_notes'),