use MOTD_BANNED_TAGS in motd editor view

This commit is contained in:
2025-12-02 06:23:06 +03:00
parent a185208fc1
commit 24fe0aba30
3 changed files with 4 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ from .routes.threads import get_post_url
from .constants import (
PermissionLevel, permission_level_string,
InfoboxKind, InfoboxHTMLClass,
REACTION_EMOJI,
REACTION_EMOJI, MOTD_BANNED_TAGS,
)
from .lib.babycode import babycode_to_html, EMOJI, BABYCODE_VERSION
from datetime import datetime
@@ -176,6 +176,7 @@ def create_app():
"__commit": commit,
"__emoji": EMOJI,
"REACTION_EMOJI": REACTION_EMOJI,
"MOTD_BANNED_TAGS": MOTD_BANNED_TAGS,
}
@app.context_processor