mirror of https://github.com/zulip/zulip.git
capitalization: Allow `realm_url` in user-facing strings.
This commit is contained in:
parent
8d4c42d460
commit
61d7689520
|
@ -255,6 +255,7 @@ def check_banned_words(text: str) -> List[str]:
|
||||||
if (
|
if (
|
||||||
"realm_name" in lower_cased_text
|
"realm_name" in lower_cased_text
|
||||||
or "realm_uri" in lower_cased_text
|
or "realm_uri" in lower_cased_text
|
||||||
|
or "realm_url" in lower_cased_text
|
||||||
or "remote_realm_host" in lower_cased_text
|
or "remote_realm_host" in lower_cased_text
|
||||||
):
|
):
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in New Issue