Disable markdown

This commit is contained in:
David Bomba 2022-05-05 19:33:15 +10:00
parent aa6fb24a8f
commit 33059f97da
3 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ class CompanyFactory
$company->enabled_modules = config('ninja.enabled_modules'); //32767;//8191; //4095 $company->enabled_modules = config('ninja.enabled_modules'); //32767;//8191; //4095
$company->default_password_timeout = 1800000; $company->default_password_timeout = 1800000;
$company->markdown_email_enabled = true; $company->markdown_email_enabled = false;
return $company; return $company;
} }

View File

@ -111,7 +111,7 @@ class SelfUpdateController extends BaseController
} }
$this->testWritable(); $this->testWritable();
$this->clearCacheDir(); // $this->clearCacheDir();
copy($this->getDownloadUrl(), storage_path('app/invoiceninja.zip')); copy($this->getDownloadUrl(), storage_path('app/invoiceninja.zip'));

View File

@ -64,7 +64,7 @@ class CreateCompany
$company->custom_fields = new \stdClass; $company->custom_fields = new \stdClass;
$company->default_password_timeout = 1800000; $company->default_password_timeout = 1800000;
$company->client_registration_fields = ClientRegistrationFields::generate(); $company->client_registration_fields = ClientRegistrationFields::generate();
$company->markdown_email_enabled = true; $company->markdown_email_enabled = false;
if(Ninja::isHosted()) if(Ninja::isHosted())
$company->subdomain = MultiDB::randomSubdomainGenerator(); $company->subdomain = MultiDB::randomSubdomainGenerator();