mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-06-09 23:06:01 +00:00
5 lines
139 B
TypeScript
5 lines
139 B
TypeScript
export function isSignupDisabled(): boolean {
|
|
const value = process.env.DISABLE_SIGNUP?.trim().toLowerCase();
|
|
return value === "true";
|
|
}
|