From 52390de4c5f9b6ad4cf7ab8bef3f48bd6ac54198 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Fri, 14 Feb 2025 14:03:03 +1100 Subject: [PATCH] fix: Some syntax issues --- src/oidc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/oidc.rs b/src/oidc.rs index d9d9734..43a345d 100644 --- a/src/oidc.rs +++ b/src/oidc.rs @@ -35,7 +35,7 @@ use super::db::*; use siwe_oidc::db::*; lazy_static::lazy_static! { - static ref SCOPES: [Scope; 2] = [ + static ref SCOPES: [Scope; 3] = [ Scope::new("openid".to_string()), Scope::new("profile".to_string()), Scope::new("email".to_string()),