mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 03:53:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.conf.urls import url, include
 | |
| from zerver.lib.rest import rest_dispatch
 | |
| 
 | |
| import analytics.views
 | |
| 
 | |
| i18n_urlpatterns = [
 | |
|     url(r'^activity$', analytics.views.get_activity,
 | |
|         name='analytics.views.get_activity'),
 | |
|     url(r'^realm_activity/(?P<realm>[\S]+)/$', analytics.views.get_realm_activity,
 | |
|         name='analytics.views.get_realm_activity'),
 | |
|     url(r'^user_activity/(?P<email>[\S]+)/$', analytics.views.get_user_activity,
 | |
|         name='analytics.views.get_user_activity'),
 | |
| 
 | |
|     # User-visible stats page
 | |
|     url(r'^stats$', analytics.views.stats,
 | |
|         name='analytics.views.stats'),
 | |
| ]
 | |
| 
 | |
| # These endpoints are a part of the API (V1), which uses:
 | |
| # * REST verbs
 | |
| # * Basic auth (username:password is email:apiKey)
 | |
| # * Takes and returns json-formatted data
 | |
| #
 | |
| # See rest_dispatch in zerver.lib.rest for an explanation of auth methods used
 | |
| #
 | |
| # All of these paths are accessed by either a /json or /api prefix
 | |
| v1_api_and_json_patterns = [
 | |
|     # get data for the graphs at /stats
 | |
|     url(r'^analytics/chart_data$', rest_dispatch,
 | |
|         {'GET': 'analytics.views.get_chart_data'}),
 | |
| ]
 | |
| 
 | |
| i18n_urlpatterns += [
 | |
|     url(r'^api/v1/', include(v1_api_and_json_patterns)),
 | |
|     url(r'^json/', include(v1_api_and_json_patterns)),
 | |
| ]
 | |
| 
 | |
| urlpatterns = i18n_urlpatterns
 |