Skip to content

Commit

Permalink
gen: fix indentation in app.js
Browse files Browse the repository at this point in the history
  • Loading branch information
dougwilson committed Feb 16, 2015
1 parent 6120f16 commit d1e6033
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions templates/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,33 +27,33 @@ app.use('/users', users);

// catch 404 and forward to error handler
app.use(function(req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
var err = new Error('Not Found');
err.status = 404;
next(err);
});

// error handlers

// development error handler
// will print stacktrace
if (app.get('env') === 'development') {
app.use(function(err, req, res, next) {
res.status(err.status || 500);
res.render('error', {
message: err.message,
error: err
});
app.use(function(err, req, res, next) {
res.status(err.status || 500);
res.render('error', {
message: err.message,
error: err
});
});
}

// production error handler
// no stacktraces leaked to user
app.use(function(err, req, res, next) {
res.status(err.status || 500);
res.render('error', {
message: err.message,
error: {}
});
res.status(err.status || 500);
res.render('error', {
message: err.message,
error: {}
});
});


Expand Down

0 comments on commit d1e6033

Please sign in to comment.