login must return 200

This commit is contained in:
Girish Ramakrishnan
2015-10-12 20:21:27 -07:00
parent fb6bf50e48
commit 4eb3d1b918

View File

@@ -85,7 +85,7 @@ function login(req, res, next) {
}
};
next(new HttpSuccess(201, tmp));
next(new HttpSuccess(200, tmp));
});
}