Fixed Engine-based Authentication APIs

This commit is contained in:
2025-10-27 22:51:36 -06:00
parent c8550ac82d
commit b760ac3083
2 changed files with 3 additions and 1 deletions

View File

@@ -208,6 +208,8 @@ def _parse_api_groups(raw: Optional[Any]) -> Tuple[str, ...]:
else:
return tuple()
cleaned = [part.lower() for part in parts if part]
if "auth" not in cleaned:
cleaned.insert(0, "auth")
return tuple(dict.fromkeys(cleaned))