mirror of
				https://github.com/nitnelave/lldap.git
				synced 2023-04-12 14:25:13 +00:00 
			
		
		
		
	server: Handle "1.1" special attribute
This commit is contained in:
		
							parent
							
								
									8d7881171b
								
							
						
					
					
						commit
						2197fe77a5
					
				@ -109,6 +109,7 @@ fn get_user_attribute(user: &User, attribute: &str, dn: &str) -> Result<Vec<Stri
 | 
				
			|||||||
        "sn" => Ok(vec![user.last_name.clone()]),
 | 
					        "sn" => Ok(vec![user.last_name.clone()]),
 | 
				
			||||||
        "cn" | "displayname" => Ok(vec![user.display_name.clone()]),
 | 
					        "cn" | "displayname" => Ok(vec![user.display_name.clone()]),
 | 
				
			||||||
        "createtimestamp" | "modifytimestamp" => Ok(vec![user.creation_date.to_rfc3339()]),
 | 
					        "createtimestamp" | "modifytimestamp" => Ok(vec![user.creation_date.to_rfc3339()]),
 | 
				
			||||||
 | 
					        "1.1" => Ok(vec![]),
 | 
				
			||||||
        _ => bail!("Unsupported user attribute: {}", attribute),
 | 
					        _ => bail!("Unsupported user attribute: {}", attribute),
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user