Added missing config option.
This commit is contained in:
parent
245f9410bf
commit
ce51c909a7
1 changed files with 22 additions and 0 deletions
22
db/seeds.rb
22
db/seeds.rb
|
@ -1027,6 +1027,28 @@ Setting.create_if_not_exists(
|
||||||
:state => false,
|
:state => false,
|
||||||
:frontend => true
|
: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(
|
Setting.create_if_not_exists(
|
||||||
:title => 'Import Endpoint',
|
:title => 'Import Endpoint',
|
||||||
|
|
Loading…
Reference in a new issue