This commit is contained in:
Andras Bacsai 2022-08-12 19:07:45 +00:00
commit db9d5a0fb0
2 changed files with 4 additions and 1 deletions

View File

@ -1284,13 +1284,14 @@ export async function getServiceFromDB({ id, teamId }: { id: string; teamId: str
});
let { type } = body
type = fixType(type)
console.log({body})
if (body?.serviceSecret.length > 0) {
body.serviceSecret = body.serviceSecret.map((s) => {
s.value = decrypt(s.value);
return s;
});
}
console.log({body2:body})
body[type] = { ...body[type], ...getUpdateableFields(type, body[type]) }
return { ...body, settings };
}
@ -1582,6 +1583,7 @@ export function getUpdateableFields(type: string, data: any) {
update[k.name] = temp
});
}
console.log({update})
return update
}

View File

@ -196,6 +196,7 @@ export async function getService(request: FastifyRequest<OnlyId>) {
try {
const teamId = request.user.teamId;
const { id } = request.params;
console.log({id, teamId})
const service = await getServiceFromDB({ id, teamId });
console.log(service)
if (!service) {