Get the user variable from req not req.headers
This commit is contained in:
@@ -15,7 +15,7 @@ function submitRequestController(req, res) {
|
|||||||
const type = req.query.type;
|
const type = req.query.type;
|
||||||
const ip = req.headers['x-forwarded-for'] || req.connection.remoteAddress;
|
const ip = req.headers['x-forwarded-for'] || req.connection.remoteAddress;
|
||||||
const user_agent = req.headers['user-agent'];
|
const user_agent = req.headers['user-agent'];
|
||||||
const user = req.headers.loggedInUser;
|
const user = req.loggedInUser;
|
||||||
|
|
||||||
requestRepository.sendRequest(id, type, ip, user_agent, user)
|
requestRepository.sendRequest(id, type, ip, user_agent, user)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
|
|||||||
Reference in New Issue
Block a user