- CRM Lead Scoring: Implement get_lead_score_from_db and update_lead_score_in_db using bot_memories table with diesel queries - Bot Manager: Implement real org lookup from database and template loading from filesystem - KB Manager: Implement get_collection_info to query Qdrant for real statistics - Analytics: Replace placeholder metrics with actual database queries for users, sessions, and storage stats - Email Setup: Implement Stalwart admin account creation via management API - Add CollectionInfo struct for Qdrant collection metadata All implementations use diesel for database operations, no sqlx.
13 lines
221 B
Rust
13 lines
221 B
Rust
pub mod automation;
|
|
pub mod bootstrap;
|
|
pub mod bot;
|
|
pub mod config;
|
|
pub mod directory;
|
|
pub mod dns;
|
|
pub mod kb;
|
|
pub mod package_manager;
|
|
pub mod rate_limit;
|
|
pub mod secrets;
|
|
pub mod session;
|
|
pub mod shared;
|
|
pub mod urls;
|