rector: arrrrr

This commit is contained in:
Andras Bacsai
2025-01-07 14:52:08 +01:00
parent c702ebff6d
commit 16c0cd10d8
349 changed files with 4204 additions and 3712 deletions

View File

@@ -5,10 +5,12 @@ namespace App\Livewire;
use App\Models\InstanceSettings;
use App\Models\Team;
use App\Notifications\Test;
use Exception;
use Illuminate\Support\Facades\RateLimiter;
use Livewire\Attributes\Locked;
use Livewire\Attributes\Validate;
use Livewire\Component;
use Throwable;
class SettingsEmail extends Component
{
@@ -65,6 +67,8 @@ class SettingsEmail extends Component
$this->syncData();
$this->team = auth()->user()->currentTeam();
$this->testEmailAddress = auth()->user()->email;
return null;
}
public function syncData(bool $toModel = false)
@@ -106,9 +110,11 @@ class SettingsEmail extends Component
$this->resetErrorBag();
$this->syncData(true);
$this->dispatch('success', 'Transactional email settings updated.');
} catch (\Throwable $e) {
} catch (Throwable $e) {
return handleError($e, $this);
}
return null;
}
public function instantSave(string $type)
@@ -122,7 +128,7 @@ class SettingsEmail extends Component
$this->submitResend();
}
} catch (\Throwable $e) {
} catch (Throwable $e) {
if ($type === 'SMTP') {
$this->smtpEnabled = false;
} elseif ($type === 'Resend') {
@@ -131,6 +137,8 @@ class SettingsEmail extends Component
return handleError($e, $this);
}
return null;
}
public function submitSmtp()
@@ -172,11 +180,13 @@ class SettingsEmail extends Component
$this->settings->save();
$this->dispatch('success', 'SMTP settings updated.');
} catch (\Throwable $e) {
} catch (Throwable $e) {
$this->smtpEnabled = false;
return handleError($e);
}
return null;
}
public function submitResend()
@@ -205,11 +215,13 @@ class SettingsEmail extends Component
$this->settings->save();
$this->dispatch('success', 'Resend settings updated.');
} catch (\Throwable $e) {
} catch (Throwable $e) {
$this->resendEnabled = false;
return handleError($e);
}
return null;
}
public function sendTestEmail()
@@ -233,10 +245,12 @@ class SettingsEmail extends Component
);
if (! $executed) {
throw new \Exception('Too many messages sent!');
throw new Exception('Too many messages sent!');
}
} catch (\Throwable $e) {
} catch (Throwable $e) {
return handleError($e);
}
return null;
}
}