mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 01:58:41 -05:00
9 lines
204 B
Ruby
9 lines
204 B
Ruby
module Vmpooler
|
|
class Dashboard < Sinatra::Base
|
|
get '/dashboard/?' do
|
|
erb :dashboard, locals: {
|
|
site_name: $config[:config]['site_name'] || '<b>vmpooler</b>'
|
|
}
|
|
end
|
|
end
|
|
end
|