Skip to content

Commit

Permalink
Update gatewayservice/gateway-service.js Added new route in tests
Browse files Browse the repository at this point in the history
Co-authored-by: Abel <[email protected]>
  • Loading branch information
MarcosBarrilVillaverde and AbelMH1 authored Mar 13, 2024
1 parent 933ce9e commit 9536c6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gatewayservice/gateway-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ app.post('/adduser', async (req, res) => {
}
});

app.get('/questions', async (req, res) => {
app.get('/history/questions', async (req, res) => {
try {
const response = await axios.get(storeQuestionsServiceUrl+'/history/questions');
res.json(response.data);
Expand Down

0 comments on commit 9536c6b

Please sign in to comment.