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.84 db/seeds/default/reporting/audits.rb
renalware-core-2.0.83 db/seeds/default/reporting/audits.rb
renalware-core-2.0.82 db/seeds/default/reporting/audits.rb
renalware-core-2.0.81 db/seeds/default/reporting/audits.rb
renalware-core-2.0.80 db/seeds/default/reporting/audits.rb
renalware-core-2.0.79 db/seeds/default/reporting/audits.rb
renalware-core-2.0.78 db/seeds/default/reporting/audits.rb
renalware-core-2.0.77 db/seeds/default/reporting/audits.rb
renalware-core-2.0.76 db/seeds/default/reporting/audits.rb
renalware-core-2.0.75 db/seeds/default/reporting/audits.rb
renalware-core-2.0.74 db/seeds/default/reporting/audits.rb
renalware-core-2.0.73 db/seeds/default/reporting/audits.rb
renalware-core-2.0.72 db/seeds/default/reporting/audits.rb
renalware-core-2.0.71 db/seeds/default/reporting/audits.rb
renalware-core-2.0.70 db/seeds/default/reporting/audits.rb
renalware-core-2.0.69 db/seeds/default/reporting/audits.rb
renalware-core-2.0.68 db/seeds/default/reporting/audits.rb
renalware-core-2.0.67 db/seeds/default/reporting/audits.rb
renalware-core-2.0.64 db/seeds/default/reporting/audits.rb
renalware-core-2.0.63 db/seeds/default/reporting/audits.rb