2016-04-27 06:33:37 +02:00
|
|
|
from django.conf.urls import patterns, url, include
|
|
|
|
|
2016-05-19 17:33:30 +02:00
|
|
|
i18n_urlpatterns = [
|
2016-04-27 06:33:37 +02:00
|
|
|
# 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
|
2016-05-19 17:33:30 +02:00
|
|
|
url(r'^accounts/deployment_dispatch$',
|
|
|
|
'zilencer.views.account_deployment_dispatch',
|
2016-04-27 06:33:37 +02:00
|
|
|
{'template_name': 'zerver/login.html'}),
|
2016-05-19 17:33:30 +02:00
|
|
|
]
|
2016-04-27 06:33:37 +02:00
|
|
|
|
|
|
|
# Zilencer views following the REST API style
|
|
|
|
v1_api_and_json_patterns = patterns('zilencer.views',
|
|
|
|
url('^feedback$', 'rest_dispatch',
|
|
|
|
{'POST': 'submit_feedback'}),
|
|
|
|
url('^report_error$', 'rest_dispatch',
|
|
|
|
{'POST': 'report_error'}),
|
|
|
|
url('^endpoints$', 'lookup_endpoints_for_user'),
|
|
|
|
)
|
|
|
|
|
2016-05-19 17:33:30 +02:00
|
|
|
urlpatterns = patterns('',
|
2016-04-27 06:33:37 +02:00
|
|
|
url(r'^api/v1/', include(v1_api_and_json_patterns)),
|
|
|
|
url(r'^json/', include(v1_api_and_json_patterns)),
|
2016-05-19 17:33:30 +02:00
|
|
|
*i18n_urlpatterns
|
2016-04-27 06:33:37 +02:00
|
|
|
)
|