Fix regular user cleanup
[mygpo.git] / mygpo / subscriptions / urls.py
blob2cc291d79344545965017674ae867e935c123c01
1 from django.conf.urls import url
3 from . import views
6 urlpatterns = [
8 url(r'^subscriptions/$',
9 views.show_list,
10 name='subscriptions'),
12 url(r'^download/subscriptions\.opml$',
13 views.download_all,
14 name='subscriptions-opml'),
16 url(r'^user/(?P<username>[\w.+-]+)/subscriptions/rss/$',
17 views.subscriptions_feed,
18 name='shared-subscriptions-rss'),
20 url(r'^user/(?P<username>[\w.+-]+)/subscriptions$',
21 views.for_user,
22 name='shared-subscriptions'),
24 url(r'^user/(?P<username>[\w.+-]+)/subscriptions\.opml$',
25 views.for_user_opml,
26 name='shared-subscriptions-opml'),