Merge branch 'develop' into feature/#71-settings-store

# Conflicts:
#	src/data-source.ts
This commit is contained in:
Julian Krauser 2025-04-30 12:30:55 +02:00
commit 753cfdd5da
8 changed files with 85 additions and 11 deletions

View file

@ -20,6 +20,7 @@ import {
getExecutivePositionByMemberAndRecord,
getExecutivePositionsByMember,
getMemberById,
getMemberLastInternalId,
getMemberPrintoutById,
getMembersByIds,
getMembershipByMemberAndRecord,
@ -43,6 +44,10 @@ router.get("/", async (req: Request, res: Response) => {
await getAllMembers(req, res);
});
router.get("/last/internalId", async (req: Request, res: Response) => {
await getMemberLastInternalId(req, res);
});
router.post("/ids", async (req: Request, res: Response) => {
await getMembersByIds(req, res);
});