2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2017-09-08 08:28:34 +00:00
|
|
|
class IdoitSupport < ActiveRecord::Migration[4.2]
|
2017-09-06 06:39:02 +00:00
|
|
|
def up
|
|
|
|
|
|
|
|
# return if it's a new setup
|
2020-08-03 08:35:43 +00:00
|
|
|
return if !Setting.exists?(name: 'system_init_done')
|
2017-09-06 06:39:02 +00:00
|
|
|
|
|
|
|
Setting.create_if_not_exists(
|
2018-12-19 17:31:51 +00:00
|
|
|
title: 'i-doit integration',
|
|
|
|
name: 'idoit_integration',
|
|
|
|
area: 'Integration::Switch',
|
2017-09-06 06:39:02 +00:00
|
|
|
description: 'Defines if i-doit (http://www.i-doit) is enabled or not.',
|
2018-12-19 17:31:51 +00:00
|
|
|
options: {
|
2017-09-06 06:39:02 +00:00
|
|
|
form: [
|
|
|
|
{
|
|
|
|
display: '',
|
2018-12-19 17:31:51 +00:00
|
|
|
null: true,
|
|
|
|
name: 'idoit_integration',
|
|
|
|
tag: 'boolean',
|
2017-09-06 06:39:02 +00:00
|
|
|
options: {
|
|
|
|
true => 'yes',
|
|
|
|
false => 'no',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2018-12-19 17:31:51 +00:00
|
|
|
state: false,
|
2017-09-06 06:39:02 +00:00
|
|
|
preferences: {
|
2018-12-19 17:31:51 +00:00
|
|
|
prio: 1,
|
2017-09-06 06:39:02 +00:00
|
|
|
authentication: true,
|
2018-12-19 17:31:51 +00:00
|
|
|
permission: ['admin.integration'],
|
2017-09-06 06:39:02 +00:00
|
|
|
},
|
2018-12-19 17:31:51 +00:00
|
|
|
frontend: true
|
2017-09-06 06:39:02 +00:00
|
|
|
)
|
|
|
|
Setting.create_if_not_exists(
|
2018-12-19 17:31:51 +00:00
|
|
|
title: 'i-doit config',
|
|
|
|
name: 'idoit_config',
|
|
|
|
area: 'Integration::Idoit',
|
2017-09-06 06:39:02 +00:00
|
|
|
description: 'Defines the i-doit config.',
|
2018-12-19 17:31:51 +00:00
|
|
|
options: {},
|
|
|
|
state: {},
|
2017-09-06 06:39:02 +00:00
|
|
|
preferences: {
|
2018-12-19 17:31:51 +00:00
|
|
|
prio: 2,
|
2017-09-06 06:39:02 +00:00
|
|
|
permission: ['admin.integration'],
|
|
|
|
},
|
2018-12-19 17:31:51 +00:00
|
|
|
frontend: false,
|
2017-09-06 06:39:02 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|