aboutsummaryrefslogtreecommitdiff
path: root/src/login/ldap_provider.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/login/ldap_provider.rs')
-rw-r--r--src/login/ldap_provider.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/login/ldap_provider.rs b/src/login/ldap_provider.rs
index ebe2771..6108e6e 100644
--- a/src/login/ldap_provider.rs
+++ b/src/login/ldap_provider.rs
@@ -9,14 +9,14 @@ pub struct LdapLoginProvider {
}
impl LdapLoginProvider {
- pub fn new(config: LoginLdapConfig) -> Result<Self> {
+ pub fn new(_config: LoginLdapConfig) -> Result<Self> {
unimplemented!()
}
}
#[async_trait]
impl LoginProvider for LdapLoginProvider {
- async fn login(&self, username: &str, password: &str) -> Result<Credentials> {
+ async fn login(&self, _username: &str, _password: &str) -> Result<Credentials> {
unimplemented!()
}
}