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', [])