Skip to content

Commit

Permalink
Update root route to point to new checkouts page
Browse files Browse the repository at this point in the history
  • Loading branch information
braintreeps committed Nov 10, 2015
1 parent 34e4c0b commit bb7eb52
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions routes/index.js
@@ -1,6 +1,10 @@
var express = require('express');
var router = express.Router();

router.get('/', function(req, res, next) {
res.render('index', { title: 'Express' });
});

router.get('/checkouts/new', function(req, res, next) {
res.render('index', { title: 'Express' });
});
Expand Down

0 comments on commit bb7eb52

Please sign in to comment.