Skip to content

Commit

Permalink
fix control panel adapter for classic
Browse files Browse the repository at this point in the history
  • Loading branch information
djay committed Dec 18, 2024
1 parent 3878966 commit d2779dd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/pas/plugins/oidc/controlpanel/classic.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,13 @@ def user_property_as_userid(self):
def user_property_as_userid(self, value):
self.settings.user_property_as_userid = value

@property
def identity_domain_name(self):
return self.settings.identity_domain_name

@identity_domain_name.setter
def identity_domain_name(self, value):
self.settings.identity_domain_name = value

class OIDCSettingsForm(controlpanel.RegistryEditForm):
schema = IOIDCSettings
Expand Down

0 comments on commit d2779dd

Please sign in to comment.