mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			446 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			446 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from urllib.parse import urlencode, urljoin, urlunsplit
 | 
						|
 | 
						|
from django.conf import settings
 | 
						|
from django.urls import reverse
 | 
						|
 | 
						|
from zerver.models import Realm, get_realm
 | 
						|
 | 
						|
 | 
						|
def get_support_url(realm: Realm) -> str:
 | 
						|
    support_realm_uri = get_realm(settings.STAFF_SUBDOMAIN).uri
 | 
						|
    support_url = urljoin(
 | 
						|
        support_realm_uri,
 | 
						|
        urlunsplit(("", "", reverse("support"), urlencode({"q": realm.string_id}), "")),
 | 
						|
    )
 | 
						|
    return support_url
 |