import { WebhookSubscription } from "@server/models"; export default function present(webhook: WebhookSubscription) { return { id: webhook.id, name: webhook.name, url: webhook.url, events: webhook.events, enabled: webhook.enabled, createdAt: webhook.createdAt, updatedAt: webhook.updatedAt, }; }