saleor-dashboard/src/webhooks/fixtures.ts
Krzysztof Wolski 054c067653
Update schema - remove webhooks (#827)
* Remove unused code and update schema

* Remove old code
2020-11-12 14:47:44 +01:00

16 lines
375 B
TypeScript

import { WebhookDetails_webhook } from "./types/WebhookDetails";
export const webhook: WebhookDetails_webhook = {
__typename: "Webhook",
app: {
__typename: "App",
id: "Jzx1ss23sEt==",
name: "Test App 2"
},
events: [],
id: "Jzx123sEt==",
isActive: true,
name: "Webhook Test 2",
secretKey: "zxczx_asdas",
targetUrl: "http://www.getsaleor.com"
};