mirror of https://github.com/zulip/zulip.git
14 lines
573 B
Python
14 lines
573 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'}),
|
|
|
|
# Enterprise terms registration, which redirects to a password-protected
|
|
# software download page.
|
|
url(r'^enterprise-registration/$', 'enterprise_registration'),
|
|
)
|