1
0
mirror of https://github.com/dkmstr/openuds.git synced 2024-12-22 13:34:04 +03:00

Little bug fixed at urls

This commit is contained in:
Adolfo Gómez 2012-07-25 13:02:10 +00:00
parent f182647d81
commit 44dfb68a1c

View File

@ -56,8 +56,8 @@ urlpatterns = patterns('uds',
# XMLRPC Processor
(r'^xmlrpc$', 'xmlrpc.views.xmlrpc'),
# Custom authentication callback
(r'^auth/(?P<idAuth>.+)', 'web.views.authCallback'),
(r'^authJava/(?P<authName>.+)/(?P<hasJava>.*)$', 'web.views.authJava'),
(r'^auth/(?P<authName>.+)', 'web.views.authCallback'),
(r'^authJava/(?P<idAuth>.+)/(?P<hasJava>.*)$', 'web.views.authJava'),
(r'^authinfo/(?P<authName>.+)', 'web.views.authInfo'),
)