From 1db2daa01ab74261b999b87f617baa84fd4b2b84 Mon Sep 17 00:00:00 2001 From: Sahat Yalkabov Date: Sun, 2 Feb 2014 05:38:38 -0500 Subject: [PATCH] Removed redundant req.assert for empty email Swapped code order of a few things in app.js to make it more consistent in terms of coding style --- app.js | 13 +++++++------ controllers/contact.js | 1 - 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app.js b/app.js index f5cb16f609..fdeef2d959 100755 --- a/app.js +++ b/app.js @@ -11,12 +11,6 @@ var mongoose = require('mongoose'); var passport = require('passport'); var expressValidator = require('express-validator'); -/** - * Create Express server. - */ - -var app = express(); - /** * Load controllers. */ @@ -33,6 +27,13 @@ var contactController = require('./controllers/contact'); var secrets = require('./config/secrets'); var passportConf = require('./config/passport'); +/** + * Create Express server. + */ + +var app = express(); + + /** * Mongoose configuration. */ diff --git a/controllers/contact.js b/controllers/contact.js index ac68f03fd3..a8848299a5 100644 --- a/controllers/contact.js +++ b/controllers/contact.js @@ -22,7 +22,6 @@ exports.getContact = function(req, res) { exports.postContact = function(req, res) { req.assert('name', 'Name cannot be blank').notEmpty(); - req.assert('email', 'Email cannot be blank').notEmpty(); req.assert('email', 'Email is not valid').isEmail(); req.assert('message', 'Message cannot be blank').notEmpty();