Merge branch 'hotfix/gift-card-creation' into develop

This commit is contained in:
Sebastian Rindom
2021-03-08 16:14:22 +01:00
4 changed files with 88 additions and 9 deletions
@@ -20,9 +20,12 @@ export default async (req, res) => {
try {
const giftCardService = req.scope.resolve("giftCardService")
await giftCardService.create(value)
const newly = await giftCardService.create({
...value,
balance: value.value,
})
const giftCard = await giftCardService.retrieve(id, {
const giftCard = await giftCardService.retrieve(newly.id, {
select: defaultFields,
relations: defaultRelations,
})