Skip to content

Commit

Permalink
add google namespace to url mappings
Browse files Browse the repository at this point in the history
  • Loading branch information
jespern committed Dec 20, 2012
1 parent 32d4659 commit 915b3d8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions socialregistration/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
url(r'^instagram/', include('socialregistration.contrib.instagram.urls',
namespace='instagram')))

if 'socialregistration.contrib.google' in settings.INSTALLED_APPS:
urlpatterns = urlpatterns + patterns('',
url(r'^google/', include('socialregistration.contrib.google.urls',
namespace='google')))

urlpatterns = urlpatterns + patterns('',
url(r'^setup/$', Setup.as_view(), name='setup'),
Expand Down

0 comments on commit 915b3d8

Please sign in to comment.