Started the creation of an API and implemented infinite scroll. Closes issue #7.

This commit is contained in:
Isaac Bythewood
2012-04-27 19:59:55 +00:00
parent ce95b7ef7f
commit f88a06aefa
13 changed files with 237 additions and 21 deletions

6
pinry/api/urls.py Normal file
View File

@@ -0,0 +1,6 @@
from django.conf.urls import patterns, include, url
urlpatterns = patterns('',
url(r'^pins/recent/(?P<page>\d*)/$', 'pinry.api.views.pins_recent', name='pins-recent'),
)