forked from ScoDoc/ScoDoc
Fix: recherche tag numériques
This commit is contained in:
parent
4681294cb8
commit
4985182b9a
@ -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 = []
|
||||
|
Loading…
Reference in New Issue
Block a user