Skip to content

Commit

Permalink
allow changing the title through the properties tab
Browse files Browse the repository at this point in the history
  • Loading branch information
erral committed Mar 15, 2024
1 parent 3ec2daa commit a7a4f94
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/pas/plugins/oidc/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ class OIDCPlugin(BasePlugin):
meta_type = "OIDC Plugin"
security = ClassSecurityInfo()

title = "OIDC Plugin"
issuer = ""
client_id = ""
client_secret = "" # nosec B105
Expand All @@ -94,6 +95,7 @@ class OIDCPlugin(BasePlugin):
user_property_as_userid = "sub"

_properties = (
dict(id="title", type="string", mode="w", label="Title"),
dict(id="issuer", type="string", mode="w", label="OIDC/Oauth2 Issuer"),
dict(id="client_id", type="string", mode="w", label="Client ID"),
dict(id="client_secret", type="string", mode="w", label="Client secret"),
Expand Down

0 comments on commit a7a4f94

Please sign in to comment.