gluster-web-interface/app/controllers/node_controller.rb

16 lines
256 B
Ruby
Raw Normal View History

2016-09-14 08:54:30 +00:00
class NodeController < ApplicationController
def index
@hosts = Array.new
if get_hosts.blank?
flash[:danger] = "Check Server"
else
@hosts = get_hosts
end
end
def get_hosts
return ['2', 'aaa', 'bbb', 'ccc']
end
end