Skip to content

Commit

Permalink
chore: change body of callback
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Kühnlein committed Feb 19, 2024
1 parent b100160 commit 469ef4f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/temporal/src/activities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,10 @@ export function makeActivities(
const downloadUrl = `${host}/api/download/${params.importerId}`;
await fetch(params.callbackUrl, {
method: "POST",
body: downloadUrl,
body: JSON.stringify({
downloadUrl,
importerId: params.importerId,
}),
});
},
createDatabases: async (params: { importerId: string }): Promise<void> => {
Expand Down

0 comments on commit 469ef4f

Please sign in to comment.