Housekeeping.
[wolnelektury.git] / src / push / urls.py
1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
3 #
4 from django.conf.urls import url
5 from push import views
6
7
8 urlpatterns = [
9     url(r'^wyslij/$', views.notification_form, name='notification_form'),
10     url(r'^wyslane/$', views.notification_sent, name='notification_sent'),
11 ]