aboutsummaryrefslogblamecommitdiff
path: root/src/login/ldap_provider.rs
blob: 6108e6eb8dfa1ba9dd57e705b1377e306522002e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                              
                                                          





                                          
                                                                                    


                        
use anyhow::Result;
use async_trait::async_trait;

use crate::config::*;
use crate::login::*;

pub struct LdapLoginProvider {
    // TODO
}

impl LdapLoginProvider {
    pub fn new(_config: LoginLdapConfig) -> Result<Self> {
        unimplemented!()
    }
}

#[async_trait]
impl LoginProvider for LdapLoginProvider {
    async fn login(&self, _username: &str, _password: &str) -> Result<Credentials> {
        unimplemented!()
    }
}