login must return 200

This commit is contained in:
Girish Ramakrishnan
2015-10-12 20:21:27 -07:00
parent 436e29bda3
commit 3dfd97c1b7
+1 -1
View File
@@ -85,7 +85,7 @@ function login(req, res, next) {
}
};
next(new HttpSuccess(201, tmp));
next(new HttpSuccess(200, tmp));
});
}