SYNC: SKIP_ALL_AUTH support

This commit is contained in:
SPRINX0\prochazka
2025-07-16 14:48:12 +02:00
committed by Diflow
parent 23065f2c4b
commit 949817f597
3 changed files with 9 additions and 0 deletions

View File

@@ -307,6 +307,9 @@ export function getAuthCategory(config) {
if (getElectron()) {
return 'electron';
}
if (config.skipAllAuth) {
return 'none';
}
return 'token';
}