fix(admin): remove one-click update feature and fix fuzzy order search in user management

- Removed the one-click update functionality from the admin panel.
- Fixed the issue where order search in user management used fuzzy matching; now uses precise matching.
This commit is contained in:
xboard
2025-05-16 05:48:37 +08:00
parent 434055f86c
commit bbeede8dbc
3 changed files with 95 additions and 95 deletions
+1 -1
View File
@@ -387,7 +387,7 @@ class UpdateService
Log::info('Restarting Octane server after update...'); Log::info('Restarting Octane server after update...');
// Update version cache before restart // Update version cache before restart
$this->updateVersionCache(); $this->updateVersionCache();
Process::run('php artisan octane:reload'); Process::run('php artisan octane:stop');
Log::info('Octane server restarted successfully.'); Log::info('Octane server restarted successfully.');
} else { } else {
Log::info('Octane is not running, skipping restart.'); Log::info('Octane is not running, skipping restart.');
File diff suppressed because one or more lines are too long
+90 -90
View File
File diff suppressed because one or more lines are too long