38 lines
845 B
Ruby
38 lines
845 B
Ruby
|
class MonitoringIssue453 < ActiveRecord::Migration
|
||
|
def up
|
||
|
# return if it's a new setup
|
||
|
return if !Setting.find_by(name: 'system_init_done')
|
||
|
|
||
|
Setting.create_if_not_exists(
|
||
|
title: 'Monitoring Token',
|
||
|
name: 'monitoring_token',
|
||
|
area: 'HealthCheck::Base',
|
||
|
description: 'Token for Monitoring.',
|
||
|
options: {
|
||
|
form: [
|
||
|
{
|
||
|
display: '',
|
||
|
null: false,
|
||
|
name: 'monitoring_token',
|
||
|
tag: 'input',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
state: SecureRandom.urlsafe_base64(40),
|
||
|
preferences: {
|
||
|
permission: ['admin.monitoring'],
|
||
|
},
|
||
|
frontend: false,
|
||
|
)
|
||
|
|
||
|
Permission.create_if_not_exists(
|
||
|
name: 'admin.monitoring',
|
||
|
note: 'Manage %s',
|
||
|
preferences: {
|
||
|
translations: ['Monitoring']
|
||
|
},
|
||
|
)
|
||
|
|
||
|
end
|
||
|
end
|