10 lines
291 B
TypeScript
10 lines
291 B
TypeScript
|
export const env = {
|
||
|
allowRegister: checkEnvTrusty(process.env.ALLOW_REGISTER),
|
||
|
allowOpenapi: checkEnvTrusty(process.env.ALLOW_OPENAPI),
|
||
|
websiteId: process.env.WEBSITE_ID,
|
||
|
};
|
||
|
|
||
|
export function checkEnvTrusty(env: string | undefined): boolean {
|
||
|
return env === '1' || env === 'true';
|
||
|
}
|