enhance(webhook): add userId to payload

This commit is contained in:
syuilo 2022-04-03 22:42:01 +09:00
parent f8e6f3cc73
commit ec3be7e4d3
3 changed files with 3 additions and 0 deletions

View file

@ -268,6 +268,7 @@ export function webhookDeliver(webhook: Webhook, type: typeof webhookEventTypes[
type,
content,
webhookId: webhook.id,
userId: webhook.userId,
to: webhook.url,
secret: webhook.secret,
createdAt: Date.now(),

View file

@ -23,6 +23,7 @@ export default async (job: Bull.Job<WebhookDeliverJobData>) => {
},
body: JSON.stringify({
hookId: job.data.webhookId,
userId: job.data.userId,
eventId: job.data.eventId,
createdAt: job.data.createdAt,
type: job.data.type,

View file

@ -51,6 +51,7 @@ export type WebhookDeliverJobData = {
type: string;
content: unknown;
webhookId: Webhook['id'];
userId: User['id'];
to: string;
secret: string;
createdAt: number;