chore: drop unused tables (scheduled_tasks, api_tokens, rate_limits, sessions) #72

Merged
rafaga21 merged 8 commits from feat/fcm-apk-v1.8.2 into master 2026-06-13 15:59:29 -04:00
3 changed files with 2 additions and 2 deletions
Showing only changes of commit 756a6d8d14 - Show all commits

View File

@@ -43,7 +43,7 @@ class AgentService
$serverUrl = $scheme . $host; $serverUrl = $scheme . $host;
} }
$scriptPath = $this->basePath . '/install/agent-install.sh'; $scriptPath = $this->basePath . '/bin/agent-install.sh';
if (!file_exists($scriptPath)) { if (!file_exists($scriptPath)) {
return ['success' => false, 'error' => 'Agent install script not found']; return ['success' => false, 'error' => 'Agent install script not found'];
@@ -114,7 +114,7 @@ class AgentService
$server = App::getEncryption()->decryptArray($server, ['ssh_password', 'ssh_key']); $server = App::getEncryption()->decryptArray($server, ['ssh_password', 'ssh_key']);
$scriptPath = $this->basePath . '/install/agent-uninstall.sh'; $scriptPath = $this->basePath . '/bin/agent-uninstall.sh';
if (!file_exists($scriptPath)) { if (!file_exists($scriptPath)) {
return ['success' => false, 'error' => 'Agent uninstall script not found']; return ['success' => false, 'error' => 'Agent uninstall script not found'];