saleor-dashboard/src/siteSettings/fixtures.ts

20 lines
481 B
TypeScript
Raw Normal View History

2019-06-19 14:40:52 +00:00
import { AuthorizationKeyType } from "../types/globalTypes";
import { SiteSettings_shop } from "./types/SiteSettings";
export const shop: SiteSettings_shop = {
__typename: "Shop",
authorizationKeys: [
{
__typename: "AuthorizationKey",
key: "n1n62jkn2123:123n",
name: AuthorizationKeyType.FACEBOOK
}
],
description: "Lorem ipsum dolor sit amet",
domain: {
__typename: "Domain",
host: "localhost:8000"
},
name: "Saleor e-commerce"
};