From 45af7c242d4714fd2323fd532417dbab38cac1ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= Date: Mon, 16 Sep 2024 19:06:26 +0200 Subject: [PATCH] chore: Reduce scope of clippy lint 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. --- src/zitadel.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zitadel.rs b/src/zitadel.rs index 6157e06..b6b575d 100644 --- a/src/zitadel.rs +++ b/src/zitadel.rs @@ -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), }