Files
threadcount-community/lib/links.ts
T
ThreadCount 822c0b7c0b ThreadCount Community edition
Uniform stock management for healthcare linen rooms: the coordinator app, the phone counter and the staff app, for your own server. Built from 8685140 on 2026-09-13. Licensed under the Functional Source License (FSL-1.1-ALv2).
2026-09-13 11:09:20 +10:00

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";