Compare commits

...

2 Commits

Author SHA1 Message Date
bymyself e24126d708 include internal extensions 2025-10-19 12:48:47 -07:00
bymyself f6af812c2d only warn for unused files 2025-10-17 19:44:27 -07:00
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ async def deprecation_warning(request: web.Request, handler):
"""Middleware to warn about deprecated frontend API paths"""
path = request.path
if (path.startswith('/scripts/') or path.startswith('/extensions/core/')):
if path.startswith("/scripts/ui") or path.startswith("/extensions/core/"):
# Only warn once per unique file path
if path not in _deprecated_paths_warned:
_deprecated_paths_warned.add(path)