trabajo-afectivo/db/migrate/20210812000001_jira_config.rb

31 lines
1,001 B
Ruby
Raw Permalink Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
2021-08-13 12:39:09 +00:00
class JiraConfig < ActiveRecord::Migration[4.2]
def up
# return if it's a new setup
return if !Setting.exists?(name: 'system_init_done')
Setting.create_if_not_exists(
title: 'Defines postmaster filter.',
name: '5400_postmaster_filter_jira_check',
area: 'Postmaster::PreFilter',
description: 'Defines postmaster filter to identify jira mails for correct follow-ups.',
options: {},
state: 'Channel::Filter::JiraCheck',
frontend: false
)
Setting.create_if_not_exists(
title: 'Defines postmaster filter.',
name: '5401_postmaster_filter_jira_check',
area: 'Postmaster::PostFilter',
description: 'Defines postmaster filter to identify jira mails for correct follow-ups.',
options: {},
state: 'Channel::Filter::JiraCheck',
frontend: false
)
end
end