diff --git a/config/initializers/high_voltage.rb b/config/initializers/high_voltage.rb new file mode 100644 index 00000000000..ff90ce86599 --- /dev/null +++ b/config/initializers/high_voltage.rb @@ -0,0 +1,8 @@ +HighVoltage.configure do |config| + config.layout = false + + config.routes = false + + # app/views/static + config.content_path = 'static/' +end diff --git a/lib/manageiq-ui-classic.rb b/lib/manageiq-ui-classic.rb index 4e0e46ee0c6..c03a581ea14 100644 --- a/lib/manageiq-ui-classic.rb +++ b/lib/manageiq-ui-classic.rb @@ -3,4 +3,5 @@ require "manageiq/ui/classic/version" # load any engines that we depend on here +require 'high_voltage' require "novnc-rails"