mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-02-21 15:54:22 +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
|
## 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
|
## v5.4.2 2022 June 1
|
||||||
|
|
||||||
- Updated react-select to 5.3.2
|
- Updated react-select to 5.3.2
|
||||||
|
@ -18,7 +18,7 @@ class OpenIdConnectProvider < ApplicationRecord
|
|||||||
validates :client_auth_method, inclusion: { in: %w[basic jwks] }
|
validates :client_auth_method, inclusion: { in: %w[basic jwks] }
|
||||||
|
|
||||||
def scope
|
def scope
|
||||||
self[:scope].join(' ')
|
self[:scope]&.join(' ')
|
||||||
end
|
end
|
||||||
|
|
||||||
def config
|
def config
|
||||||
|
Loading…
x
Reference in New Issue
Block a user