Correction on restricted path checking (auth-host).
This commit is contained in:
@@ -25,9 +25,7 @@ def is_ui_path(path: str) -> bool:
|
|||||||
|
|
||||||
def is_restricted_path(path: str) -> bool:
|
def is_restricted_path(path: str) -> bool:
|
||||||
"""Check if the path is restricted (API/admin endpoints)."""
|
"""Check if the path is restricted (API/admin endpoints)."""
|
||||||
return path.startswith(
|
return path.startswith(("/auth/api/admin/", "/auth/api/user/", "/auth/ws/"))
|
||||||
("/auth/api/admin", "/auth/api/user", "/auth/api/ws", "/auth/ws/")
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def should_redirect_to_auth_host(path: str) -> bool:
|
def should_redirect_to_auth_host(path: str) -> bool:
|
||||||
|
|||||||
Reference in New Issue
Block a user