fix: member get by ids

This commit is contained in:
Julian Krauser 2025-01-27 15:16:12 +01:00
parent b678067874
commit ebe587756a
4 changed files with 13 additions and 12 deletions

View file

@ -290,7 +290,7 @@ export async function createMember(req: Request, res: Response): Promise<any> {
const lastname = req.body.lastname;
const nameaffix = req.body.nameaffix;
const birthdate = req.body.birthdate;
const internalId = req.body.internalId;
const internalId = req.body.internalId || null;
let createMember: CreateMemberCommand = {
salutationId,