add missing description property for oidc principal

This commit is contained in:
Hannes Plattner 2026-05-04 13:51:09 +02:00
parent 6e495a004c
commit 2b69416c44

View file

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