Skip to content
Snippets Groups Projects
Select Git revision
  • 48aa39152f453fb0d182a130363f1ff36569e947
  • main default protected
  • airflow-2.7.0 protected
  • airflow253 protected
  • air251
  • test_docker_op
  • airflow225
  • mptest
  • https-deployment
  • datacat_integration protected
  • datacatalog-integration
  • stable-2.2.2 protected
  • stable-2.2.1 protected
  • stable-2.2.0 protected
  • stable-2.1.4 protected
  • stable-2.1.3 protected
  • stable-2.1.2 protected
  • stable-2.1.1 protected
  • stable-2.1.0 protected
  • stable-2.0.2 protected
  • stable-2.0.1 protected
  • stable-2.0.0 protected
  • stable-1.0.1 protected
  • stable-1.0 protected
  • stable-0.1 protected
25 results

eFlows_menu_link.py

Blame
  • eFlows_menu_link.py 607 B
    from airflow.plugins_manager import AirflowPlugin
    
    appbuilder_eFlows = {
        "name": "About eFlows4HPC",
        "href": "https://eflows4hpc.eu/",
    }
    
    class AirflowEFlowsPlugin(AirflowPlugin):
        name = "eFlowsLink"
        operators = []
        flask_blueprints = []
        hooks = []
        admin_views = []
        appbuilder_menu_items = [appbuilder_eFlows]
    
    class AirflowDataCatPlugin(AirflowPlugin):
        name = "Data Catalogue"
        operators = []
        flask_blueprints = []
        hooks = []
        admin_views = []
        appbuilder_menu_items = [{"name": "Data Catalogue", "href": "https://datacatalog.fz-juelich.de/index.html"}]