mirror of https://github.com/zulip/zulip.git
19 lines
479 B
Python
19 lines
479 B
Python
"""
|
|
`minified_js` is taken from `zerver.templatetags.minified_js.py`
|
|
"""
|
|
|
|
from typing import Text
|
|
|
|
from django.conf import settings
|
|
from django.template import TemplateSyntaxError
|
|
|
|
from zerver.templatetags.minified_js import MinifiedJSNode
|
|
|
|
|
|
def minified_js(sourcefile: str) -> Text:
|
|
if sourcefile not in settings.JS_SPECS:
|
|
raise TemplateSyntaxError(
|
|
"Invalid argument: no JS file %s".format(sourcefile))
|
|
|
|
return MinifiedJSNode(sourcefile).render({})
|