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
|
|
|
|
2017-09-08 08:28:34 +00:00
|
|
|
class MonitoringIssue453 < ActiveRecord::Migration[4.2]
|
2016-11-23 14:25:44 +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')
|
2016-11-23 14:25:44 +00:00
|
|
|
|
|
|
|
Setting.create_if_not_exists(
|
2018-12-19 17:31:51 +00:00
|
|
|
title: 'Monitoring Token',
|
|
|
|
name: 'monitoring_token',
|
|
|
|
area: 'HealthCheck::Base',
|
2016-11-23 14:25:44 +00:00
|
|
|
description: 'Token for Monitoring.',
|
2018-12-19 17:31:51 +00:00
|
|
|
options: {
|
2016-11-23 14:25:44 +00:00
|
|
|
form: [
|
|
|
|
{
|
|
|
|
display: '',
|
2018-12-19 17:31:51 +00:00
|
|
|
null: false,
|
|
|
|
name: 'monitoring_token',
|
|
|
|
tag: 'input',
|
2016-11-23 14:25:44 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2018-12-19 17:31:51 +00:00
|
|
|
state: SecureRandom.urlsafe_base64(40),
|
2016-11-23 14:25:44 +00:00
|
|
|
preferences: {
|
|
|
|
permission: ['admin.monitoring'],
|
|
|
|
},
|
2018-12-19 17:31:51 +00:00
|
|
|
frontend: false,
|
2016-11-23 14:25:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
Permission.create_if_not_exists(
|
2018-12-19 17:31:51 +00:00
|
|
|
name: 'admin.monitoring',
|
|
|
|
note: 'Manage %s',
|
2016-11-23 14:25:44 +00:00
|
|
|
preferences: {
|
|
|
|
translations: ['Monitoring']
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|