urls.py 554 B

1234567891011121314
  1. # This Source Code Form is subject to the terms of the Mozilla Public
  2. # License, v. 2.0. If a copy of the MPL was not distributed with this
  3. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  4. from django.conf.urls import include, patterns, url
  5. from django.http import HttpResponse
  6. urlpatterns = patterns('',
  7. (r'', include('django_browserid.urls')),
  8. url(r'^epic-fail/', lambda r: HttpResponse('this is a stub'),
  9. name='epic_fail'),
  10. url(r'^some-dummy-url/', lambda r: HttpResponse('this is a stub'),
  11. name='test_url'),
  12. )