From 86ff91718e02fd7a53f1bd42ed40058424f4a9ae Mon Sep 17 00:00:00 2001 From: rmarinn <34529290+rmarinn@users.noreply.github.com> Date: Sat, 28 Dec 2024 03:03:33 +0800 Subject: [PATCH] fix(jans-cedarling): remove workload entity creation using userinfo_token Signed-off-by: rmarinn <34529290+rmarinn@users.noreply.github.com> --- jans-cedarling/cedarling/src/authz/entities/workload.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/jans-cedarling/cedarling/src/authz/entities/workload.rs b/jans-cedarling/cedarling/src/authz/entities/workload.rs index bb325b7cf59..7773b09d284 100644 --- a/jans-cedarling/cedarling/src/authz/entities/workload.rs +++ b/jans-cedarling/cedarling/src/authz/entities/workload.rs @@ -43,7 +43,6 @@ pub fn create_workload_entity( for (token_kind, token, key) in [ (TokenKind::Access, tokens.access_token.as_ref(), "client_id"), (TokenKind::Id, tokens.id_token.as_ref(), "aud"), - (TokenKind::Userinfo, tokens.userinfo_token.as_ref(), "aud"), ] { match try_create_entity(token_kind, token, key) { Ok(entity) => return Ok(entity),