From ce51c909a7abc80eef57cdff2e0f76fbafebdfae Mon Sep 17 00:00:00 2001 From: Martin Edenhofer Date: Tue, 19 Mar 2013 14:58:32 +0100 Subject: [PATCH] Added missing config option. --- db/seeds.rb | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/db/seeds.rb b/db/seeds.rb index 0cb203576..9a1f1f8bb 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -1027,6 +1027,28 @@ Setting.create_if_not_exists( :state => false, :frontend => true ) +Setting.create_if_not_exists( + :title => 'Ignore Escalation/SLA Information', + :name => 'import_igonre_sla', + :area => 'Import::Base', + :description => 'Ignore Escalation/SLA Information form import system.', + :options => { + :form => [ + { + :display => '', + :null => true, + :name => 'import_igonre_sla', + :tag => 'boolean', + :options => { + true => 'yes', + false => 'no', + }, + }, + ], + }, + :state => false, + :frontend => true +) Setting.create_if_not_exists( :title => 'Import Endpoint',