redirect to chart from index

This commit is contained in:
Radek Stepan 2012-05-23 16:21:18 +01:00
parent 4d09c8f218
commit 4689929eeb
1 changed files with 3 additions and 0 deletions

View File

@ -63,6 +63,9 @@ app.configure 'development', ->
app.configure 'production', ->
app.use express.errorHandler()
# Redirect to chart from index.
app.get '/', (req, res) -> res.redirect '/burndown'
# Show burndown chart.
app.get '/burndown', (req, res) ->
resources = 3 ; store = { 'issues': [], 'milestones': [] }