/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import { getInjectable } from "@ogre-tools/injectable"; import { storesAndApisCanBeCreatedInjectionToken } from "../common/k8s-api/stores-apis-can-be-created.token"; import { getClusterIdFromHost } from "./utils"; const storesAndApisCanBeCreatedInjectable = getInjectable({ id: "create-stores-and-apis", instantiate: () => Boolean(getClusterIdFromHost(location.host)), injectionToken: storesAndApisCanBeCreatedInjectionToken, }); export default storesAndApisCanBeCreatedInjectable;