Skip to content

Commit

Permalink
Merge c5ce94d into f5b7fc8
Browse files Browse the repository at this point in the history
  • Loading branch information
dnaranjo89 committed Dec 16, 2015
2 parents f5b7fc8 + c5ce94d commit 5c0ade9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Add the notifications urls to your urlconf::

urlpatterns = patterns('',
...
url('^inbox/notifications/', include(notifications.urls)),
url('^inbox/notifications/', include(notifications.urls.urls)),
...
)

Expand Down
2 changes: 2 additions & 0 deletions notifications/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@
url(r'^api/unread_count/$', views.live_unread_notification_count, name='live_unread_notification_count'),
url(r'^api/unread_list/$', views.live_unread_notification_list, name='live_unread_notification_list'),
]

urls = (urlpatterns, 'notifications', 'notifications')

0 comments on commit 5c0ade9

Please sign in to comment.