Skip to content

Commit

Permalink
fix: jan-cli-tui add none option to tokenEndpointAuthMethod (ref: #3463)
Browse files Browse the repository at this point in the history
  • Loading branch information
devrimyatar committed Dec 31, 2022
1 parent 5439c07 commit 5b0ecff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def prepare_tabs(self) -> None:
self.myparent.getTitledRadioButton(
_("Authn Method token endpoint"),
name='tokenEndpointAuthMethod',
values=[('client_secret_basic', 'client_secret_basic'), ('client_secret_post', 'client_secret_post'), ('client_secret_jwt', 'client_secret_jwt'), ('private_key_jwt', 'private_key_jwt')],
values=[('none', 'none'), ('client_secret_basic', 'client_secret_basic'), ('client_secret_post', 'client_secret_post'), ('client_secret_jwt', 'client_secret_jwt'), ('private_key_jwt', 'private_key_jwt')],
current_value=self.data.get('tokenEndpointAuthMethod'),
jans_help=self.myparent.get_help_from_schema(schema, 'tokenEndpointAuthMethod'),
style='class:outh-client-radiobutton'),
Expand Down

0 comments on commit 5b0ecff

Please sign in to comment.