vincbeck commented on code in PR #52586: URL: https://github.com/apache/airflow/pull/52586#discussion_r2180165724
########## airflow-core/docs/core-concepts/auth-manager/index.rst: ########## @@ -91,14 +91,27 @@ Some reasons you may want to write a custom auth manager include: * You'd like to use an auth manager that leverages an identity provider from your preferred cloud provider. * You have a private user management tool that is only available to you or your organization. -Authentication related BaseAuthManager methods -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +User representation +^^^^^^^^^^^^^^^^^^^ + +:class:`~airflow.api_fastapi.auth.managers.base_auth_manager.BaseAuthManager` defines an authentication manager, +parameterized by a user class T representing the authenticated user type. +Auth manager implementations (subclasses of :class:`~airflow.api_fastapi.auth.managers.base_auth_manager.BaseAuthManager`) +should specify the associated concrete user type. Each auth manager has its own user type definition. Review Comment: Absolutely! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
