NewsBlur-viq/apps/rss_feeds/urls.py

12 lines
614 B
Python
Raw Normal View History

from django.conf.urls.defaults import *
from apps.rss_feeds import views
urlpatterns = patterns('',
url(r'^feed_autocomplete', views.feed_autocomplete, name='feed-autocomplete'),
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'),
url(r'^status', views.status, name='status'),
)