chore: isHosted -> isCloudHosted for clarity

This commit is contained in:
Tom Moor
2022-05-21 13:34:52 +01:00
parent f2be756cf4
commit 6c8b127ff9
10 changed files with 28 additions and 25 deletions

View File

@@ -4,7 +4,7 @@ import { trim } from "lodash";
import queryString from "query-string";
import EDITOR_VERSION from "@shared/editor/version";
import stores from "~/stores";
import isHosted from "~/utils/isHosted";
import isCloudHosted from "~/utils/isCloudHosted";
import download from "./download";
import {
AuthorizationError,
@@ -107,7 +107,7 @@ class ApiClient {
// not needed for authentication this offers a performance increase.
// For self-hosted we include them to support a wide variety of
// authenticated proxies, e.g. Pomerium, Cloudflare Access etc.
credentials: isHosted ? "omit" : "same-origin",
credentials: isCloudHosted ? "omit" : "same-origin",
cache: "no-cache",
});
} catch (err) {

View File

@@ -0,0 +1,8 @@
import env from "~/env";
/**
* True if the current installation is the cloud hosted version at getoutline.com
*/
const isCloudHosted = env.DEPLOYMENT === "hosted";
export default isCloudHosted;

View File

@@ -1,5 +0,0 @@
import env from "~/env";
const isHosted = env.DEPLOYMENT === "hosted";
export default isHosted;