Advertisement
Guest User

Untitled

a guest
Mar 20th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. urlpatterns = [
  2.  
  3. # API Notifications
  4. url(r'^api/notification/v0/', include(notification_router.urls)),
  5. url(r'^api/notification/v0/mark_all_as_read/$', mark_all_as_read),
  6. url(r'^api/notification/v0/unread_count/$',
  7. unread_count),
  8.  
  9. # etc
  10. ]
  11.  
  12. urlpatterns += url(r'', cache_page(settings.PAGE_CACHE_SECONDS)(RootView.as_view()), name='customer-root'),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement