upload current sources

This commit is contained in:
2025-08-16 16:50:49 -07:00
parent 1808624237
commit 45fac304bd

View File

@@ -26,9 +26,11 @@ public class AuthenticationService {
return false; return false;
} }
return userId != null && password != null return userId != null && password != null
? authenticateWithCredentials(userId, password) ? authenticateWithCredentials(userId, password)
: apiToken != null && validateApiToken(apiToken); : apiToken != null && validateApiToken(apiToken);
} }
public boolean authenticateWithCredentials(String userId, String password) { public boolean authenticateWithCredentials(String userId, String password) {