Mercurial > public > sg101
annotate gpp/oembed/urls.py @ 563:93f049a241ff
For bitbucket issue #4, deactivate users for spam when accepting flagged user
profiles. Also use raw_id_fields on UserProfileFlagAdmin.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 09 Feb 2012 19:38:03 -0600 |
parents | 72fd300685d5 |
children | ddd69a8e07c7 |
rev | line source |
---|---|
bgneal@285 | 1 """ |
bgneal@285 | 2 URLs for the oembed application. |
bgneal@285 | 3 """ |
bgneal@285 | 4 from django.conf.urls.defaults import * |
bgneal@285 | 5 |
bgneal@285 | 6 urlpatterns = patterns('oembed.views', |
bgneal@285 | 7 url(r'^fetch/$', 'fetch_media', name='oembed-fetch_media'), |
bgneal@286 | 8 url(r'^fetch_saved/$', 'fetch_saved_media', name='oembed-fetch_saved_media'), |
bgneal@285 | 9 ) |