36 lines
999 B
Ruby
36 lines
999 B
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class SettingChangeTicketZoomAttachmentPreview < ActiveRecord::Migration[5.1]
|
|
def up
|
|
# return if it's a new setup
|
|
return if !Setting.exists?(name: 'system_init_done')
|
|
|
|
Setting.create_or_update(
|
|
title: 'Sidebar Attachments',
|
|
name: 'ui_ticket_zoom_attachments_preview',
|
|
area: 'UI::TicketZoom::Preview',
|
|
description: 'Enables preview of attachments.',
|
|
options: {
|
|
form: [
|
|
{
|
|
display: '',
|
|
null: true,
|
|
name: 'ui_ticket_zoom_attachments_preview',
|
|
tag: 'boolean',
|
|
translate: true,
|
|
options: {
|
|
true => 'yes',
|
|
false => 'no',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
state: true,
|
|
preferences: {
|
|
prio: 400,
|
|
permission: ['admin.ui'],
|
|
},
|
|
frontend: true
|
|
)
|
|
end
|
|
end
|