Fixed error on force re-sync when UniFi is unavailable. Implemented check for deprecated environment variables. Implemented check for valid UniFi usernames. Implemented UniFi username check in unifi.js. Added array.js utils

This commit is contained in:
Glenn de Haan
2024-09-30 18:35:52 +02:00
parent f491c27af4
commit d653c124e2
4 changed files with 39 additions and 0 deletions

9
utils/array.js Normal file
View File

@@ -0,0 +1,9 @@
/**
* Exports the array util
*/
module.exports = {
deprecated: [
'SECURITY_CODE',
'DISABLE_AUTH'
]
};