~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to notification/urls.py

  • Committer: franku
  • Date: 2017-04-17 16:26:45 UTC
  • mto: This revision was merged to the branch mainline in revision 456.
  • Revision ID: somal@arcor.de-20170417162645-806mug0q1hru8y09
renamed a function notices()

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
from django.conf.urls import url
2
2
 
3
 
from notification.views import notices#, mark_all_seen, single
 
3
from notification.views import notice_settings
4
4
 
5
5
urlpatterns = [
6
 
    url(r'^$', notices, name='notification_notices'),
 
6
    url(r'^$', notice_settings, name='notification_notices'),
7
7
]