Skip to content

Commit

Permalink
chore: Reduce scope of clippy lint
Browse files Browse the repository at this point in the history
We don't actually seem to use the `ZitadelId` for anything, but this
will likely change soon, so let's just change the lint scope.
  • Loading branch information
tlater-famedly committed Sep 18, 2024
1 parent b0039bd commit 45af7c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zitadel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -488,13 +488,13 @@ pub struct ZitadelConfig {

/// The different ways to identify a user in Zitadel
#[derive(Debug)]
#[allow(dead_code)]
pub enum UserId {
/// The login name is actually the email address
Login(String),
/// The nick name is actually the LDAP ID
Nick(String),
/// The Zitadel ID
#[allow(dead_code)]
ZitadelId(String),
}

Expand Down

0 comments on commit 45af7c2

Please sign in to comment.