vincbeck commented on code in PR #41777:
URL: https://github.com/apache/airflow/pull/41777#discussion_r1735323225
##########
airflow/auth/managers/base_auth_manager.py:
##########
@@ -443,3 +430,19 @@ def security_manager(self) -> AirflowSecurityManagerV2:
from airflow.www.security_manager import AirflowSecurityManagerV2
return AirflowSecurityManagerV2(self.appbuilder)
+
+ @staticmethod
+ def get_cli_commands() -> list[CLICommand]:
+ """
+ Vends CLI commands to be included in Airflow CLI.
+
+ Override this method to expose commands via Airflow CLI to manage this
auth manager.
+ """
+ return []
+
+ def get_api_endpoints(self) -> None | Blueprint:
+ """Return API endpoint(s) definition for the auth manager."""
+ return None
+
+ def register_views(self) -> None:
Review Comment:
As mentioned
[here](https://github.com/apache/airflow/pull/41777#issuecomment-2316299463),
this is not in the scope of this PR
--
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]