API-9: PartyPlaner Login endpoint (#5)
Jenkins Production Deployment

Co-authored-by: Patrick Müller <patrick@mueller-patrick.tech>
Reviewed-on: #5
Co-authored-by: Patrick Müller <patrick@plutodev.de>
Co-committed-by: Patrick Müller <patrick@plutodev.de>
This commit was merged in pull request #5.
This commit is contained in:
2021-08-20 18:51:01 +00:00
parent 915c2e7917
commit b4f25c1831
12 changed files with 184 additions and 24 deletions
+3
View File
@@ -1,4 +1,5 @@
import express from 'express';
export abstract class CommonRoutesConfig {
app: express.Application;
name: string;
@@ -8,8 +9,10 @@ export abstract class CommonRoutesConfig {
this.name = name;
this.configureRoutes();
}
getName() {
return this.name;
}
abstract configureRoutes(): express.Application;
}