mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
9 lines
481 B
Python
9 lines
481 B
Python
from django.conf.urls.defaults import *
|
|
from apps.rss_feeds import views
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^statistics', views.load_feed_statistics, name='statistics'),
|
|
url(r'^exception_retry', views.exception_retry, name='exception-retry'),
|
|
url(r'^exception_change_feed_address', views.exception_change_feed_address, name='exception-change-feed-address'),
|
|
url(r'^exception_change_feed_link', views.exception_change_feed_link, name='exception-change-feed-link'),
|
|
)
|