Alpha Release 0.2.0 #109

Merged
niggl merged 60 commits from dev into main 2021-01-20 17:05:18 +00:00
Showing only changes of commit 2b658ac381 - Show all commits

View File

@ -59,7 +59,7 @@ export class ContactController {
} }
contact = await this.contactRepository.save(contact) contact = await this.contactRepository.save(contact)
return (await this.contactRepository.findOne(contact, { relations: ['groups'] })).toResponse(); return (await this.contactRepository.findOne({ id: contact.id }, { relations: ['groups'] })).toResponse();
} }
// @Put('/:id') // @Put('/:id')