context_processors: Cache the realm description in default context.

This commit is contained in:
Hemanth V. Alluri
2019-03-18 13:12:13 +05:30
committed by Tim Abbott
parent 6e8e7feffc
commit 261166f96d
4 changed files with 17 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
from zerver.models import Realm
from zerver.lib.cache import cache_with_key, realm_rendered_description_cache_key
from zerver.lib.bugdown import convert as bugdown_convert
@cache_with_key(realm_rendered_description_cache_key, timeout=3600*24*7)
def get_realm_rendered_description(realm: Realm) -> str:
realm_description_raw = realm.description or "The coolest place in the universe."
return bugdown_convert(realm_description_raw, message_realm=realm,
no_previews=True)