feat(connector): [31188f42] Finalize production optimizations, filtering, and dashboard enhancements

This commit is contained in:
2026-03-05 09:48:34 +00:00
parent e0cea543bb
commit 6fc30325d1
29 changed files with 1178 additions and 89 deletions

View File

@@ -48,6 +48,19 @@ class Settings:
self.UDF_LAST_UPDATE = os.getenv("UDF_LAST_UPDATE", "SuperOffice:85")
self.UDF_LAST_OUTREACH = os.getenv("UDF_LAST_OUTREACH", "SuperOffice:88")
# --- User Whitelist (Roboplanet Associates) ---
# Includes both Numerical IDs and Shortnames for robustness
self.ROBOPLANET_WHITELIST = {
# IDs
485, 454, 487, 515, 469, 528, 512, 465, 486, 493, 468, 476, 455, 483,
492, 523, 470, 457, 498, 491, 464, 525, 527, 496, 490, 497, 456, 479,
# Shortnames
"RAAH", "RIAK", "RABA", "RJBU", "RPDU", "RCGO", "RBHA", "RAHE", "RPHO",
"RSHO", "RMJO", "DKE", "RAKI", "RSKO", "RMKR", "RSLU", "REME", "RNSL",
"RAPF", "ROBO", "RBRU", "RSSC", "RBSC", "RASC", "RKAB", "RDSE", "RSSH",
"RJST", "JUTH", "RSWA", "RCWE", "RJZH", "EVZ"
}
# Global instance
settings = Settings()