1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-30 19:52:20 +01:00

(bug) unable to connect with OAuth2

This commit is contained in:
Sylvain 2022-06-07 15:23:11 +02:00
parent 8a13eb1cd3
commit 883f570d2b
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
- Updated sidekiq-unique-jobs to 7.1.23 to get rid of Sidekiq's default_worker_options deprecation warning - Updated sidekiq-unique-jobs to 7.1.23 to get rid of Sidekiq's default_worker_options deprecation warning
- Allow moving with arrows in the setup script's inputs - Allow moving with arrows in the setup script's inputs
- Fix a bug: unable to connect with OAuth2
- Fix a bug: when installing fab-manager as non-root user, most of the resulting installation directories were owned by root - Fix a bug: when installing fab-manager as non-root user, most of the resulting installation directories were owned by root
- Fix a bug: unable to edit OIDC provider - Fix a bug: unable to edit OIDC provider
- Fix a bug: list of OIDC scopes are loading indefinitely - Fix a bug: list of OIDC scopes are loading indefinitely

View File

@ -30,7 +30,7 @@ module OmniAuth::Strategies
def authorize_params def authorize_params
super.tap do |params| super.tap do |params|
params[:scope] = active_provider.providable.scopes params[:scope] = OmniAuth::Strategies::SsoOauth2Provider.active_provider.providable.scopes
end end
end end