platform-core/modules/security/__init__.py
ValueOn AG 4a60086c80
Some checks failed
Deploy Plattform-Core (Int) / test (push) Failing after 15s
Deploy Plattform-Core (Int) / deploy (push) Has been skipped
cp adapted to 2026 poweron
2026-06-09 09:53:31 +02:00

23 lines
510 B
Python

# Copyright (c) 2026 PowerOn AG
# All rights reserved.
"""
Security core modules for low-level security operations.
Used by connectors and interfaces. Does not depend on FastAPI or interfaces.
"""
from .rbac import RbacClass
from .rbacHelpers import (
checkResourceAccess,
checkUiAccess,
checkDataAccess,
getResourcePermissions,
getUiPermissions,
)
from .rootAccess import getRootDbAppConnector, getRootUser
__all__ = [
"RbacClass",
"getRootDbAppConnector",
"getRootUser",
]