2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
2020-07-13 08:44:33 +00:00
|
|
|
class MaintenanceCheckmkWordingsOnSettings < ActiveRecord::Migration[5.2]
|
|
|
|
def change
|
|
|
|
|
|
|
|
# return if it's a new setup
|
2020-08-03 08:35:43 +00:00
|
|
|
return if !Setting.exists?(name: 'system_init_done')
|
2020-07-13 08:44:33 +00:00
|
|
|
|
|
|
|
Setting.find_by(name: 'check_mk_integration').update!(
|
|
|
|
title: 'Checkmk integration',
|
|
|
|
description: 'Defines if Checkmk (https://checkmk.com/) is enabled or not.',
|
|
|
|
)
|
|
|
|
|
|
|
|
Setting.find_by(name: 'check_mk_token').update!(
|
|
|
|
title: 'Checkmk token',
|
|
|
|
description: 'Defines the Checkmk token for allowing updates.',
|
|
|
|
)
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|