Sha256: 1436477c836721635291dd0af32e2e364206df1b1531ca7175372782a48c3ce4

Contents?: true

Size: 575 Bytes

Versions: 100

Compression:

Stored size: 575 Bytes

Contents

organizations = Organization.unscoped.all
locations = Location.unscoped.all
User.as_anonymous_admin do
  JobTemplate.without_auditing do
    Dir[File.join("#{ForemanRemoteExecution::Engine.root}/app/views/templates/**/*.erb")].each do |template|
      sync = !Rails.env.test? && Setting[:remote_execution_sync_templates]
      template = JobTemplate.import_raw!(File.read(template), :default => true, :lock => true, :update => sync)
      template.organizations = organizations if template.present?
      template.locations = locations if template.present?
    end
  end
end

Version data entries

100 entries across 100 versions & 1 rubygems

Version Path
foreman_remote_execution-7.0.0 db/seeds.d/70-job_templates.rb
foreman_remote_execution-5.0.7 db/seeds.d/70-job_templates.rb
foreman_remote_execution-5.0.6 db/seeds.d/70-job_templates.rb
foreman_remote_execution-6.2.0 db/seeds.d/70-job_templates.rb
foreman_remote_execution-5.0.5 db/seeds.d/70-job_templates.rb
foreman_remote_execution-6.1.0 db/seeds.d/70-job_templates.rb
foreman_remote_execution-5.0.4 db/seeds.d/70-job_templates.rb
foreman_remote_execution-5.0.3 db/seeds.d/70-job_templates.rb
foreman_remote_execution-6.0.0 db/seeds.d/70-job_templates.rb
foreman_remote_execution-5.0.2 db/seeds.d/70-job_templates.rb
foreman_remote_execution-5.1.0 db/seeds.d/70-job_templates.rb
foreman_remote_execution-5.0.1 db/seeds.d/70-job_templates.rb
foreman_remote_execution-5.0.0 db/seeds.d/70-job_templates.rb
foreman_remote_execution-4.8.0 db/seeds.d/70-job_templates.rb
foreman_remote_execution-4.5.6 db/seeds.d/70-job_templates.rb
foreman_remote_execution-4.5.5 db/seeds.d/70-job_templates.rb
foreman_remote_execution-4.5.4 db/seeds.d/70-job_templates.rb
foreman_remote_execution-4.7.0 db/seeds.d/70-job_templates.rb
foreman_remote_execution-4.5.3 db/seeds.d/70-job_templates.rb
foreman_remote_execution-4.5.2 db/seeds.d/70-job_templates.rb