vmpooler/lib/vmpooler/dashboard.rb
2018-07-13 09:35:18 -07:00

14 lines
270 B
Ruby

module Vmpooler
class Dashboard < Sinatra::Base
def config
Vmpooler.config
end
get '/dashboard/?' do
erb :dashboard, locals: {
site_name: ENV['SITE_NAME'] || config[:config]['site_name'] || '<b>vmpooler</b>'
}
end
end
end