mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
* Added SSOUser extension profile for auth * Now checks for Corp membership and executes required commands * Various small fixups
11 lines
258 B
Python
11 lines
258 B
Python
from django.conf.urls.defaults import *
|
|
|
|
# Uncomment the next two lines to enable the admin:
|
|
from django.contrib import admin
|
|
admin.autodiscover()
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^admin/', include(admin.site.urls)),
|
|
(r'^sso/', include('sso.urls')),
|
|
)
|