actor trait improvements and ui implementation
This commit is contained in:
		@@ -150,7 +150,6 @@ async fn main() -> std::io::Result<()> {
 | 
			
		||||
    }
 | 
			
		||||
    println!("   Authentication: {}", if config.auth { "ENABLED" } else { "DISABLED" });
 | 
			
		||||
    println!("   TLS/WSS: {}", if config.tls { "ENABLED" } else { "DISABLED" });
 | 
			
		||||
    println!("   Webhooks: {}", if config.webhooks { "ENABLED" } else { "DISABLED" });
 | 
			
		||||
    println!("   Circles configured: {}", config.circles.len());
 | 
			
		||||
    
 | 
			
		||||
    if config.tls {
 | 
			
		||||
@@ -160,12 +159,6 @@ async fn main() -> std::io::Result<()> {
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    
 | 
			
		||||
    if config.webhooks {
 | 
			
		||||
        println!("   Webhook secrets loaded from environment variables:");
 | 
			
		||||
        println!("     - STRIPE_WEBHOOK_SECRET");
 | 
			
		||||
        println!("     - IDENFY_WEBHOOK_SECRET");
 | 
			
		||||
    }
 | 
			
		||||
    
 | 
			
		||||
    if config.auth && !config.circles.is_empty() {
 | 
			
		||||
        println!("   Configured circles:");
 | 
			
		||||
        for (circle_name, members) in &config.circles {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user