-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Finished user managment #92
Conversation
gatewayservice/gateway-service.js
Outdated
const amount = req.params.amount.toString(); | ||
const type = req.params.type.toString(); | ||
// Forward the question request to the quetion service | ||
const questionResponse = await axios.get(questionServiceUrl+'/questions/' + lang + '/' + amount + '/' + type); |
Check warning
Code scanning / SonarCloud
Server-side requests should not be vulnerable to forging attacks Medium
gatewayservice/gateway-service.js
Outdated
try { | ||
const user = req.params.user; | ||
// Forward the record request to the record service | ||
const recordResponse = await axios.get(recordServiceUrl + '/record/ranking/' + user); |
Check warning
Code scanning / SonarCloud
Server-side requests should not be vulnerable to forging attacks Medium
gatewayservice/gateway-service.js
Outdated
try { | ||
const lang = req.params.lang.toString(); | ||
// Forward the question request to the quetion service | ||
const questionResponse = await axios.get(questionServiceUrl+'/questions/' + lang); | ||
const questionResponse = await axios.get(questionServiceUrl+'/questions/' + lang.toString()); |
Check warning
Code scanning / SonarCloud
Server-side requests should not be vulnerable to forging attacks Medium
Quality Gate passedIssues Measures |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great cookies are now implemented 👌🍪
No description provided.