Test change for testing CI/CD pipeline 2
All checks were successful
Jenkins Production Deployment

This commit is contained in:
Patrick Müller 2021-03-21 20:47:48 +01:00
parent 415b4ba640
commit 4ce60bccfb

View File

@ -9,10 +9,10 @@ export class GeneralInfoRoutes extends CommonRoutesConfig {
configureRoutes() {
this.app.route(`/dhbw-service/generalInfo`)
.get((req: express.Request, res: express.Response) => {
res.status(200).send(`GET generalInfo`);
res.status(200).send(`GET generalInfo v2`);
})
.post((req: express.Request, res: express.Response) => {
res.status(200).send(`POST generalInfo`);
res.status(200).send(`POST generalInfo v2`);
});
return this.app;