1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-19 13:54:25 +01:00

(bug) unable to edit OIDC provider

This commit is contained in:
Sylvain 2022-06-06 11:40:53 +02:00
parent 0e29eb773e
commit 1b5bb662ac
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,7 @@
## next deploy
- Updated sidekiq-unique-jobs to 7.1.23 to get rid of Sidekiq's default_worker_options deprecation warning
- Fix a bug: unable to edit OIDC provider
## v5.4.3 2022 June 6

View File

@ -12,9 +12,10 @@ end
if @provider.providable_type == OpenIdConnectProvider.name
json.providable_attributes do
json.extract! @provider.providable, :id, :issuer, :discovery, :client_auth_method, :scope,
json.extract! @provider.providable, :id, :issuer, :discovery, :client_auth_method,
:prompt, :send_scope_to_token_endpoint, :client__identifier, :client__secret, :client__authorization_endpoint,
:client__token_endpoint, :client__userinfo_endpoint, :client__jwks_uri, :client__end_session_endpoint, :profile_url
json.scope @provider.providable[:scope]
end
end