fix deployment db issue and widthrawal administration page
Deploy to Shared Hosting / Shared hosting deploy (push) Failing after 47s
Tests / PHPUnit (push) Failing after 1m19s

This commit is contained in:
root
2026-08-20 20:18:00 -04:00
parent 889c037660
commit d3da699e55
19 changed files with 1170 additions and 194 deletions
+3 -1
View File
@@ -22,7 +22,9 @@ class SettingsModel extends Model
public function getSettings()
{
return $this->findAll()[0]; // Assuming there's only one settings record
$rows = $this->orderBy('id', 'ASC')->findAll(1);
return $rows[0] ?? [];
}
public function updateSettings($data)