Redirect / to /dashboard

This commit is contained in:
Scott Schneider 2015-04-10 09:38:55 -07:00
parent 6cd56f40ee
commit b6c53cd855
2 changed files with 20 additions and 3 deletions

View file

@ -0,0 +1,9 @@
module Vmpooler
class Dashboard < Sinatra::Base
get '/dashboard/?' do
erb :dashboard, locals: {
site_name: $config[:config]['site_name'] || '<b>vmpooler</b>'
}
end
end
end