saleor-dashboard/src/webhooks/utils.ts
2020-07-07 12:14:12 +02:00

5 lines
186 B
TypeScript

import { WebhookFragment } from "@saleor/fragments/types/WebhookFragment";
export function isUnnamed(webhook: WebhookFragment): boolean {
return ["", null].includes(webhook?.name);
}