app/models/setting/foreman_tasks.rb in foreman-tasks-0.8.6 vs app/models/setting/foreman_tasks.rb in foreman-tasks-0.9.0
- old
+ new
@@ -1,22 +1,19 @@
class Setting::ForemanTasks < Setting
-
def self.load_defaults
# Check the table exists
return unless super
- self.transaction do
+ transaction do
[
- self.set('dynflow_allow_dangerous_actions', N_("Allow unlocking actions which can have dangerous consequences."), false),
- self.set('dynflow_enable_console', N_("Enable the dynflow console (/foreman_tasks/dynflow) for debugging"), true),
- self.set('dynflow_console_require_auth', N_("Require user to be authenticated as user with admin rights when accessing dynflow console"), true),
- self.set('foreman_tasks_proxy_action_retry_count', N_("Number of attempts to start a task on the smart proxy before failing"), 4),
- self.set('foreman_tasks_proxy_action_retry_interval', N_("Time in seconds between retries"), 15),
- self.set('foreman_tasks_proxy_action_start_timeout', N_("Time in second during which a task has to be started on the proxy"), 60)
- ].each { |s| self.create! s.update(:category => "Setting::ForemanTasks")}
+ 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),
+ set('foreman_tasks_proxy_action_start_timeout', N_('Time in second during which a task has to be started on the proxy'), 60)
+ ].each { |s| create! s.update(:category => 'Setting::ForemanTasks') }
end
true
-
end
-
end