Files
zulip/zilencer/urls/pages.py
Leo Franchi d13500ac0d Add a email-only sso login page that redirects to a deployment-specific domai
(imported from commit 7134ad71f01b3c22c61c6c0e65f7196efaf92237)
2013-11-08 14:33:12 -05:00

10 lines
397 B
Python

from django.conf.urls import patterns, url, include
urlpatterns = patterns('zilencer.views',
# SSO dispatch page for desktop app with SSO
# Allows the user to enter their email address only,
# and then redirects the user to the proper deployment
# SSO-login page
url(r'^accounts/deployment_dispatch$', 'account_deployment_dispatch', {'template_name': 'zerver/login.html'}),
)