Prepare for onboarding v2

This commit is contained in:
David Bomba 2024-12-04 12:25:06 +11:00
parent d1ba154d69
commit 6c91941556
2 changed files with 8 additions and 1 deletions

View File

@ -73,7 +73,7 @@ class UserPresenter extends EntityPresenter
return 'No First Name Available';
}
return $this->entity->first_name ?? 'First Name';
return $this->entity->first_name ?? ' ';
}

View File

@ -45,6 +45,13 @@ return [
],
],
'postmark-broadcast' => [
'token' => env('POSTMARK_BROADCAST_SECRET', ''),
'from' => [
'address' => env('POSTMARK_BROADCAST_FROM_ADDRESS', 'community@invoiceninja.com')
],
],
'microsoft' => [
'client_id' => env('MICROSOFT_CLIENT_ID'),
'client_secret' => env('MICROSOFT_CLIENT_SECRET'),