From c5d9268d8bec66b9f31fd2eaaf288c0991d1e809 Mon Sep 17 00:00:00 2001 From: dsc Date: Fri, 11 May 2012 11:09:53 -0700 Subject: [PATCH] Temporarily redirect to /graphs/ohai/edit while I implement backwards compat with the old data format. --- lib/server/server.co | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/lib/server/server.co b/lib/server/server.co index ccbce5c..0c0ae51 100755 --- a/lib/server/server.co +++ b/lib/server/server.co @@ -188,7 +188,9 @@ app.controller require './controllers/datasource' app.get '/', (req, res) -> - res.render 'dashboard' + ### XXX: Temporary, while I implement backwards compat with the old data format + # res.render 'dashboard' + res.redirect '/graphs/ohai/edit' app.get '/:type/:action/?', (req, res, next) -> {type, action} = req.params -- 1.7.0.4