mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-31 22:04:35 -04:00
minor fixes
This commit is contained in:
parent
5ce87d00d9
commit
5f8b03cc58
@ -781,7 +781,9 @@ class BaseController extends Controller
|
|||||||
case 'next':
|
case 'next':
|
||||||
return 'main.next.dart.js';
|
return 'main.next.dart.js';
|
||||||
case 'profile':
|
case 'profile':
|
||||||
return 'main.profile.dart.js';
|
return 'main.profile.dart.js';
|
||||||
|
case 'html':
|
||||||
|
return 'main.html.dart.js';
|
||||||
default:
|
default:
|
||||||
return 'main.foss.dart.js';
|
return 'main.foss.dart.js';
|
||||||
|
|
||||||
|
@ -69,7 +69,7 @@ class SupportMessageSent extends Mailable
|
|||||||
if(Ninja::isHosted())
|
if(Ninja::isHosted())
|
||||||
$subject = "{$priority}Hosted-{$db}-{$is_large}{$platform}{$migrated} :: {$plan} :: ".date('M jS, g:ia');
|
$subject = "{$priority}Hosted-{$db}-{$is_large}{$platform}{$migrated} :: {$plan} :: ".date('M jS, g:ia');
|
||||||
else
|
else
|
||||||
$subject = "{$priority}Self Hosted :: {$plan} :: {$platform} :: ".date('M jS, g:ia');
|
$subject = "{$priority}Self Hosted :: {$plan} :: {$is_large}{$platform}{$migrated} :: ".date('M jS, g:ia');
|
||||||
|
|
||||||
return $this->from(config('mail.from.address'), $user->present()->name())
|
return $this->from(config('mail.from.address'), $user->present()->name())
|
||||||
->replyTo($user->email, $user->present()->name())
|
->replyTo($user->email, $user->present()->name())
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
|
|
||||||
namespace Tests;
|
namespace Tests;
|
||||||
|
|
||||||
|
use App\DataMapper\ClientRegistrationFields;
|
||||||
use App\DataMapper\ClientSettings;
|
use App\DataMapper\ClientSettings;
|
||||||
use App\DataMapper\CompanySettings;
|
use App\DataMapper\CompanySettings;
|
||||||
use App\Factory\CompanyUserFactory;
|
use App\Factory\CompanyUserFactory;
|
||||||
@ -173,6 +174,8 @@ trait MockAccountData
|
|||||||
'account_id' => $this->account->id,
|
'account_id' => $this->account->id,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
$this->company->client_registration_fields = ClientRegistrationFields::generate();
|
||||||
|
|
||||||
Storage::makeDirectory($this->company->company_key.'/documents', 0755, true);
|
Storage::makeDirectory($this->company->company_key.'/documents', 0755, true);
|
||||||
Storage::makeDirectory($this->company->company_key.'/images', 0755, true);
|
Storage::makeDirectory($this->company->company_key.'/images', 0755, true);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user