Sha256: 3846f368dc68adbc12bdd1bb077b63e9b9cbf92f7fa27c629d7b23584dcdf665

Contents?: true

Size: 991 Bytes

Versions: 7

Compression:

Stored size: 991 Bytes

Contents

class Setting::ForemanTasks < Setting
  def self.load_defaults
    # Check the table exists
    return unless super

    transaction do
      [
        set('foreman_tasks_sync_task_timeout', N_('Number of seconds to wait for synchronous task to finish.'), 120),
        set('dynflow_allow_dangerous_actions', N_('Allow unlocking actions which can have dangerous consequences.'), false),
        set('dynflow_enable_console', N_('Enable the dynflow console (/foreman_tasks/dynflow) for debugging'), true),
        set('dynflow_console_require_auth', N_('Require user to be authenticated as user with admin rights when accessing dynflow console'), true),
        set('foreman_tasks_proxy_action_retry_count', N_('Number of attempts to start a task on the smart proxy before failing'), 4),
        set('foreman_tasks_proxy_action_retry_interval', N_('Time in seconds between retries'), 15)
      ].each { |s| create! s.update(:category => 'Setting::ForemanTasks') }
    end

    true
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
foreman-tasks-0.14.6 app/models/setting/foreman_tasks.rb
foreman-tasks-0.15.0 app/models/setting/foreman_tasks.rb
foreman-tasks-0.14.5 app/models/setting/foreman_tasks.rb
foreman-tasks-0.14.4 app/models/setting/foreman_tasks.rb
foreman-tasks-0.14.3 app/models/setting/foreman_tasks.rb
foreman-tasks-0.14.2 app/models/setting/foreman_tasks.rb
foreman-tasks-0.14.1 app/models/setting/foreman_tasks.rb