From 2b69416c449d1d709611af19a61e667b47a54d24 Mon Sep 17 00:00:00 2001 From: Hannes Plattner Date: Mon, 4 May 2026 13:51:09 +0200 Subject: [PATCH] add missing description property for oidc principal --- scopes/web/auth/oidc.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scopes/web/auth/oidc.py b/scopes/web/auth/oidc.py index 77e1715..9a2a3d8 100644 --- a/scopes/web/auth/oidc.py +++ b/scopes/web/auth/oidc.py @@ -78,6 +78,10 @@ class Principal: def title(self): return self.data['name'] + @property + def description(self): + return self.data['name'] + @property def groups(self): return self.data.get('groups', [])