Added Comments JSON into the Reddit app

This commit is contained in:
2011-09-08 12:09:39 +01:00
parent 2d549f587f
commit eaf1989fe9
2 changed files with 43 additions and 1 deletions

View File

@@ -6,5 +6,7 @@ urlpatterns = patterns('',
(r'^profile/add/reddit', views.reddit_add),
(r'^profile/del/reddit/$', views.reddit_del),
(r'^profile/del/reddit/(?P<redditid>\d+)/$', views.reddit_del),
url(r'^reddit/comments.json$', views.RedditCommentsJSON.as_view(), name='reddit-commentsjson'),
)