horizon-cisco-ui/horizon_cisco_ui/overrides.py

36 lines
1.4 KiB
Python

# Copyright 2015 Cisco Systems, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from horizon_cisco_ui.cisco.dfa \
import workflows as cisco_network_workflows
from horizon_cisco_ui.firewalls \
import views as cisco_firewall_views
from openstack_dashboard.dashboards.project.firewalls \
import views as firewall_views
from openstack_dashboard.dashboards.project.networks \
import workflows as horizon_network_workflows
horizon_network_workflows.CreateNetwork.default_steps = \
cisco_network_workflows.DFACreateNetwork.default_steps
horizon_network_workflows.CreateNetwork.handle = \
cisco_network_workflows.DFACreateNetwork.handle
horizon_network_workflows.CreateNetwork._create_network = \
cisco_network_workflows.DFACreateNetwork._create_network
# TODO(robcresswell): remove example
# Silly example that does nothing, but illustrates an override.
firewall_views.IndexView = cisco_firewall_views.IndexView