Skip to content

Commit 516a6ca

Browse files
authored
Merge branch 'main' into feat/staging-anchr-setup
2 parents d02dd18 + a7ae582 commit 516a6ca

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

platforms/blabsy-w3ds-auth-api/src/controllers/WebhookController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export class WebhookController {
8888
const { data, schemaId, id } = req.body;
8989

9090
if (process.env.ANCHR_URL) {
91-
axios.post(new URL("pictique", process.env.ANCHR_URL).toString(), req.body)
91+
axios.post(new URL("blabsy", process.env.ANCHR_URL).toString(), req.body)
9292
}
9393

9494
if (adapter.lockedIds.includes(id)) return;

platforms/pictique-api/src/controllers/WebhookController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class WebhookController {
3030
handleWebhook = async (req: Request, res: Response) => {
3131
try {
3232
if (process.env.ANCHR_URL) {
33-
axios.post(new URL("blabsy", process.env.ANCHR_URL).toString(), req.body)
33+
axios.post(new URL("pictique", process.env.ANCHR_URL).toString(), req.body)
3434
}
3535
const schemaId = req.body.schemaId;
3636
const globalId = req.body.id;

0 commit comments

Comments
 (0)