Skip to content

Commit

Permalink
Add social_auth urls
Browse files Browse the repository at this point in the history
  • Loading branch information
dedy-purwanto committed Jul 25, 2012
1 parent 100238b commit 31067c7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ubgc/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@
admin.autodiscover()

urlpatterns = patterns('',
url(r'', include('social_auth.urls')),

url(r'^$', HomeView.as_view(), name='home'),
url(r'^logout/$', login_required(LogOutView.as_view()), name='logout'),
url(r'^entries/', include('entries.urls', namespace='entries')),
url(r'^profiles/', include('profiles.urls', namespace='profiles')),

url(r'^social/', include('socialregistration.urls', namespace = 'socialregistration')),
url(r'^admin/', include(admin.site.urls)),
)

Expand Down

0 comments on commit 31067c7

Please sign in to comment.