Merge pull request #54 from KevinMidboe/api_save-user-w-request

Api save user w request
This commit was merged in pull request #54.
This commit is contained in:
2017-10-23 15:36:28 +02:00
committed by GitHub
3 changed files with 10 additions and 11 deletions

View File

@@ -12,10 +12,11 @@ function submitRequestController(req, res) {
// This is the id that is the param of the url
const id = req.params.mediaId;
const type = req.query.type;
var ip = req.headers['x-forwarded-for'] || req.connection.remoteAddress;
var user_agent = req.headers['user-agent']
const ip = req.headers['x-forwarded-for'] || req.connection.remoteAddress;
const user_agent = req.headers['user-agent']
const user = req.headers.loggedinuser;
requestRepository.sendRequest(id, type, ip, user_agent)
requestRepository.sendRequest(id, type, ip, user_agent, user)
.then(() => {
res.send({ success: true, message: 'Media item sucessfully requested!' });
})