Fix: recherche tag numériques

This commit is contained in:
Emmanuel Viennet 2024-01-26 11:38:38 +01:00
parent 4681294cb8
commit 4985182b9a
1 changed files with 3 additions and 1 deletions

View File

@ -212,8 +212,10 @@ class ModuleTag(ScoTag):
# API
def module_tag_search(term):
# TODO placer dans la vraie API et ne plus utiliser sco_publish
def module_tag_search(term: str | int):
"""List all used tag names (for auto-completion)"""
term = "" if term is None else str(term)
# restrict charset to avoid injections
if not scu.ALPHANUM_EXP.match(term):
data = []