remove disable sign up from common ui

This commit is contained in:
Simon Larsen 2023-09-11 20:25:52 +05:30
parent 693b9d0eab
commit 3e11dca340
No known key found for this signature in database
GPG Key ID: AB45983AA9C81CDE

View File

@ -36,7 +36,7 @@ export const HOST: string = env('DOMAIN') || '';
export const BILLING_ENABLED: boolean = env('BILLING_ENABLED') === 'true';
export const BILLING_PUBLIC_KEY: string = env('BILLING_PUBLIC_KEY') || '';
export const DISABLE_SIGNUP: boolean = env('DISABLE_SIGNUP') === 'true';
export const VERSION: Version = new Version(env('VERSION') || '1.0.0');
export const DASHBOARD_API_HOSTNAME: Hostname = Hostname.fromString(HOST);