saleor-dashboard/src/webhooks/utils.ts

6 lines
186 B
TypeScript
Raw Normal View History

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