057da00fd2
Uniform stock management for healthcare linen rooms: the coordinator app, the phone counter and the staff app, for your own server. Built from e2d6d42 on 2026-09-13. Licensed under the Functional Source License (FSL-1.1-ALv2).
9 lines
665 B
TypeScript
9 lines
665 B
TypeScript
/* Where the product's own screens send people for the terms and the privacy notice.
|
|
*
|
|
* On threadcount.tech these are the hosted service's pages. A Community instance is somebody
|
|
* else's service with somebody else's privacy officer, so the operator sets NEXT_PUBLIC_TERMS_URL
|
|
* and NEXT_PUBLIC_PRIVACY_URL to their own documents; until they do, the links point here, which
|
|
* is at least honest about where the software came from. Compiled in at build time. */
|
|
export const TERMS_URL = process.env.NEXT_PUBLIC_TERMS_URL || "https://threadcount.tech/terms";
|
|
export const PRIVACY_URL = process.env.NEXT_PUBLIC_PRIVACY_URL || "https://threadcount.tech/privacy";
|