mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from typing import Any
 | 
						|
 | 
						|
from django.conf.urls import include, url
 | 
						|
 | 
						|
import zilencer.views
 | 
						|
from zerver.lib.rest import rest_dispatch
 | 
						|
 | 
						|
i18n_urlpatterns = [
 | 
						|
    url(r'^billing/$', zilencer.views.billing_home, name='zilencer.views.billing_home'),
 | 
						|
    url(r'^upgrade/$', zilencer.views.initial_upgrade, name='zilencer.views.initial_upgrade'),
 | 
						|
]  # type: Any
 | 
						|
 | 
						|
# Zilencer views following the REST API style
 | 
						|
v1_api_and_json_patterns = [
 | 
						|
    url('^remotes/push/register$', rest_dispatch,
 | 
						|
        {'POST': 'zilencer.views.register_remote_push_device'}),
 | 
						|
    url('^remotes/push/unregister$', rest_dispatch,
 | 
						|
        {'POST': 'zilencer.views.unregister_remote_push_device'}),
 | 
						|
    url('^remotes/push/notify$', rest_dispatch,
 | 
						|
        {'POST': 'zilencer.views.remote_server_notify_push'}),
 | 
						|
 | 
						|
    # Push signup doesn't use the REST API, since there's no auth.
 | 
						|
    url('^remotes/server/register$', zilencer.views.register_remote_server),
 | 
						|
]
 | 
						|
 | 
						|
# Make a copy of i18n_urlpatterns so that they appear without prefix for English
 | 
						|
urlpatterns = list(i18n_urlpatterns)
 | 
						|
 | 
						|
urlpatterns += [
 | 
						|
    url(r'^api/v1/', include(v1_api_and_json_patterns)),
 | 
						|
    url(r'^json/', include(v1_api_and_json_patterns)),
 | 
						|
]
 |