Skip to content

Commit

Permalink
fix: add teamid to generateBuildToken (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
khendrikse authored Aug 27, 2024
1 parent 5a2cab2 commit d5bdc2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ integration.addApiHandler(
integration.addApiHandler(
"enable-build",
async (_, { client, siteId, teamId }) => {
const { token } = await client.generateBuildToken(siteId);
const { token } = await client.generateBuildToken(siteId, teamId);
await client.setBuildToken(teamId, siteId, token);
await client.enableBuildEventHandlers(siteId);

Expand Down

0 comments on commit d5bdc2b

Please # to comment.