Sync DNS2 production changes - removed obsolete test suite and refactored structure

This commit is contained in:
Krystie
2026-03-23 10:47:15 +01:00
parent 1ac50918ab
commit d76644d948
288 changed files with 8965 additions and 15731 deletions

View File

@@ -47,17 +47,17 @@ const paths = {
// Log paths (for allowed log file access)
allowedLogPaths: isWindows
? [
process.env.LOCALAPPDATA || 'C:\\Users',
process.env.APPDATA || 'C:\\Users',
'C:\\ProgramData',
'/var/log',
'/opt',
]
process.env.LOCALAPPDATA || 'C:\\Users',
process.env.APPDATA || 'C:\\Users',
'C:\\ProgramData',
'/var/log',
'/opt'
]
: [
'/var/log',
'/opt',
'/home',
],
'/var/log',
'/opt',
'/home'
],
// Platform detection helpers
isWindows,