Fix crash when SSO_ACCOUNT_SETTINGS is not defined (#24628)

local
Claire 1 year ago committed by GitHub
parent 1ac9219b31
commit e9a79d46cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/controllers/application_controller.rb

@ -128,7 +128,7 @@ class ApplicationController < ActionController::Base
end
def sso_account_settings
ENV.fetch('SSO_ACCOUNT_SETTINGS')
ENV.fetch('SSO_ACCOUNT_SETTINGS', nil)
end
def current_account

Loading…
Cancel
Save