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

(bug) unable to compile the assets when OIDC is enabled but the scopes were not set

This commit is contained in:
Sylvain 2022-06-06 10:15:19 +02:00
parent af97b2d6e9
commit 0e16374956
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
## next deploy
- Fix a bug: unable to compile the assets when OIDC is enabled but the scopes were not set
## v5.4.2 2022 June 1
- Updated react-select to 5.3.2

View File

@ -18,7 +18,7 @@ class OpenIdConnectProvider < ApplicationRecord
validates :client_auth_method, inclusion: { in: %w[basic jwks] }
def scope
self[:scope].join(' ')
self[:scope]&.join(' ')
end
def config