~sleepsonthefloor/django-nova/vnc_console

« back to all changes in this revision

Viewing changes to src/django_nova/tests/urls.py

  • Committer: Devin Carlen
  • Date: 2011-02-25 18:47:00 UTC
  • mfrom: (15.1.6 improve_unittests)
  • Revision ID: devin.carlen@gmail.com-20110225184700-d9tyyp65hw06ct3m
MergedĀ lp:~devcamcar/django-nova/improve_unittests

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    url(r'^region/', include('django_nova.urls.region')),
30
30
    url(r'^admin/projects/', include('django_nova.urls.admin_project')),
31
31
    url(r'^admin/roles/', include('django_nova.urls.admin_roles')),
32
 
)
 
 
b'\\ No newline at end of file'
 
32
    url(r'^credentials/download/(?P<auth_token>\w+)/$',
 
33
        'django_nova.views.credentials.authorize_credentials',
 
34
        name='nova_credentials_authorize'),
 
35
)
 
36