fix: env mail

This commit is contained in:
Michael 2024-08-19 13:54:52 +02:00
parent fe66e6d6ba
commit e96224106b
3 changed files with 4 additions and 7 deletions

View file

@ -16,7 +16,7 @@ class ThirdPartyServices extends Controller
{
$this->third_party_integrations_nextcloud = $third_party_integrations_nextcloud || config('app.third_party_integrations_nextcloud', false);
$this->third_party_integrations_open_project = $third_party_integrations_open_project || config('app.third_party_integrations_open_project', false);
$this->email_send_allow = $email_send_allow || config('email.email_send_allow', false);
$this->email_send_allow = $email_send_allow || config('app.email_send_allow', false);
$this->nextcloud_service = new \App\Http\Controllers\ThirdPartyServices\NextcloudService();
$this->open_project_service = new \App\Http\Controllers\ThirdPartyServices\OpenProjectService();
$this->email_service = new \App\Http\Controllers\ThirdPartyServices\EmailService();