saleor-dashboard/src/webhooks/utils.ts

6 lines
170 B
TypeScript
Raw Normal View History

2020-03-18 11:03:20 +00:00
import { WebhookFragment } from "./types/WebhookFragment";
export function isUnnamed(webhook: WebhookFragment): boolean {
return ["", null].includes(webhook?.name);
}