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
|
|
|
|
2018-02-20 06:47:32 +00:00
|
|
|
class SettingAttachmentPreview < ActiveRecord::Migration[5.1]
|
|
|
|
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')
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2018-02-20 06:47:32 +00:00
|
|
|
Setting.create_if_not_exists(
|
2018-12-19 17:31:51 +00:00
|
|
|
title: 'Sidebar Attachments',
|
|
|
|
name: 'ui_ticket_zoom_attachments_preview',
|
|
|
|
area: 'UI::TicketZoom::Preview',
|
2018-02-20 06:47:32 +00:00
|
|
|
description: 'Enables preview of attachments.',
|
2018-12-19 17:31:51 +00:00
|
|
|
options: {
|
2018-02-20 06:47:32 +00:00
|
|
|
form: [
|
|
|
|
{
|
2018-12-19 17:31:51 +00:00
|
|
|
display: '',
|
|
|
|
null: true,
|
|
|
|
name: 'ui_ticket_zoom_attachments_preview',
|
|
|
|
tag: 'boolean',
|
2018-02-20 06:47:32 +00:00
|
|
|
translate: true,
|
2018-12-19 17:31:51 +00:00
|
|
|
options: {
|
2018-02-20 06:47:32 +00:00
|
|
|
true => 'yes',
|
|
|
|
false => 'no',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2018-12-19 17:31:51 +00:00
|
|
|
state: false,
|
2018-02-20 06:47:32 +00:00
|
|
|
preferences: {
|
2018-12-19 17:31:51 +00:00
|
|
|
prio: 400,
|
2018-02-20 06:47:32 +00:00
|
|
|
permission: ['admin.ui'],
|
|
|
|
},
|
2018-12-19 17:31:51 +00:00
|
|
|
frontend: true
|
2018-02-20 06:47:32 +00:00
|
|
|
)
|
|
|
|
Setting.create_if_not_exists(
|
2018-12-19 17:31:51 +00:00
|
|
|
title: 'Sidebar Attachments',
|
|
|
|
name: 'ui_ticket_zoom_sidebar_article_attachments',
|
|
|
|
area: 'UI::TicketZoom::Preview',
|
2018-02-20 06:47:32 +00:00
|
|
|
description: 'Enables a sidebar to show an overview of all attachments.',
|
2018-12-19 17:31:51 +00:00
|
|
|
options: {
|
2018-02-20 06:47:32 +00:00
|
|
|
form: [
|
|
|
|
{
|
2018-12-19 17:31:51 +00:00
|
|
|
display: '',
|
|
|
|
null: true,
|
|
|
|
name: 'ui_ticket_zoom_sidebar_article_attachments',
|
|
|
|
tag: 'boolean',
|
2018-02-20 06:47:32 +00:00
|
|
|
translate: true,
|
2018-12-19 17:31:51 +00:00
|
|
|
options: {
|
2018-02-20 06:47:32 +00:00
|
|
|
true => 'yes',
|
|
|
|
false => 'no',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2018-12-19 17:31:51 +00:00
|
|
|
state: false,
|
2018-02-20 06:47:32 +00:00
|
|
|
preferences: {
|
2018-12-19 17:31:51 +00:00
|
|
|
prio: 500,
|
2018-02-20 06:47:32 +00:00
|
|
|
permission: ['admin.ui'],
|
|
|
|
},
|
2018-12-19 17:31:51 +00:00
|
|
|
frontend: true
|
2018-02-20 06:47:32 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|