stage-manager/lib/routes/index.rb

20 lines
300 B
Ruby

namespace '/' do
get '' do
channels = [
{
:name => 'Bit Goblin',
:openProjects => 'N/a',
:totalProjects => 'N/a',
:last_updated => 'N/a'
}
]
erb :index, :locals => {
:title => 'Dashboard',
:channels => channels
}
end
end