Sha256: 1a6764a947d5be81bdd3a0c8efb785bf6eb37d8a0ddc938a726bc31594f1fc12

Contents?: true

Size: 648 Bytes

Versions: 142

Compression:

Stored size: 648 Bytes

Contents

# frozen_string_literal: true

module Renalware
  log "Adding default audits" do
    file_path = File.join(File.dirname(__FILE__), "audits.yml")
    yml_audits = YAML.load_file(file_path)
    yml_audits.each do |yml_audit|
      yml_audit.symbolize_keys!
      Reporting::Audit.find_or_create_by!(name: yml_audit[:name]) do |audit|
        audit.description = yml_audit[:description]
        audit.view_name = yml_audit[:view_name]
        audit.materialized = yml_audit[:materialized]
        audit.refresh_schedule = yml_audit[:refresh_schedule]
        audit.display_configuration = yml_audit[:display_configuration]
      end
    end
  end
end

Version data entries

142 entries across 142 versions & 1 rubygems

Version Path
renalware-core-2.0.147 db/seeds/default/reporting/audits.rb
renalware-core-2.0.146 db/seeds/default/reporting/audits.rb
renalware-core-2.0.145 db/seeds/default/reporting/audits.rb
renalware-core-2.0.144 db/seeds/default/reporting/audits.rb
renalware-core-2.0.143 db/seeds/default/reporting/audits.rb
renalware-core-2.0.142 db/seeds/default/reporting/audits.rb
renalware-core-2.0.141 db/seeds/default/reporting/audits.rb
renalware-core-2.0.140 db/seeds/default/reporting/audits.rb
renalware-core-2.0.139 db/seeds/default/reporting/audits.rb
renalware-core-2.0.138 db/seeds/default/reporting/audits.rb
renalware-core-2.0.137 db/seeds/default/reporting/audits.rb
renalware-core-2.0.136 db/seeds/default/reporting/audits.rb
renalware-core-2.0.135 db/seeds/default/reporting/audits.rb
renalware-core-2.0.134 db/seeds/default/reporting/audits.rb
renalware-core-2.0.133 db/seeds/default/reporting/audits.rb
renalware-core-2.0.132 db/seeds/default/reporting/audits.rb
renalware-core-2.0.131 db/seeds/default/reporting/audits.rb
renalware-core-2.0.130 db/seeds/default/reporting/audits.rb
renalware-core-2.0.129 db/seeds/default/reporting/audits.rb
renalware-core-2.0.128 db/seeds/default/reporting/audits.rb