Mercurial > public > sg101
view gpp/oembed/urls.py @ 407:42a4e66972d5
Trying to fix #200; found a bug in the get_forum_unread_status() function. Added some db indexes.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 01 Apr 2011 01:18:44 +0000 |
parents | 72fd300685d5 |
children | ddd69a8e07c7 |
line wrap: on
line source
""" URLs for the oembed application. """ from django.conf.urls.defaults import * urlpatterns = patterns('oembed.views', url(r'^fetch/$', 'fetch_media', name='oembed-fetch_media'), url(r'^fetch_saved/$', 'fetch_saved_media', name='oembed-fetch_saved_media'), )