add sso settings placeholder

This commit is contained in:
DocuSeal
2023-10-29 13:36:06 +02:00
parent ddb557ebef
commit 5ed08fa9ab
6 changed files with 44 additions and 2 deletions
@@ -0,0 +1,16 @@
# frozen_string_literal: true
class SsoSettingsController < ApplicationController
before_action :load_encrypted_config
authorize_resource :encrypted_config, only: :index
authorize_resource :encrypted_config, parent: false, except: :index
def index; end
private
def load_encrypted_config
@encrypted_config =
EncryptedConfig.find_or_initialize_by(account: current_account, key: 'saml_configs')
end
end