Implement operator login service and fix static root

This commit is contained in:
2025-10-22 19:23:38 -06:00
parent 102e77f676
commit f361c51a5e
16 changed files with 947 additions and 2 deletions

View File

@@ -26,6 +26,11 @@ from .github import ( # noqa: F401
GitHubTokenStatus,
RepoHeadSnapshot,
)
from .operator import ( # noqa: F401
OperatorAccount,
OperatorLoginSuccess,
OperatorMFAChallenge,
)
__all__ = [
"AccessTokenClaims",
@@ -45,5 +50,8 @@ __all__ = [
"GitHubRepoRef",
"GitHubTokenStatus",
"RepoHeadSnapshot",
"OperatorAccount",
"OperatorLoginSuccess",
"OperatorMFAChallenge",
"sanitize_service_context",
]