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:
parent
af97b2d6e9
commit
0e16374956
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user