23 lines
478 B
Ruby
23 lines
478 B
Ruby
|
class TelegramSupport < ActiveRecord::Migration
|
||
|
def up
|
||
|
|
||
|
# return if it's a new setup
|
||
|
return if !Setting.find_by(name: 'system_init_done')
|
||
|
|
||
|
Permission.create_if_not_exists(
|
||
|
name: 'admin.channel_telegram',
|
||
|
note: 'Manage %s',
|
||
|
preferences: {
|
||
|
translations: ['Channel - Telegram']
|
||
|
},
|
||
|
)
|
||
|
|
||
|
Ticket::Article::Type.create_if_not_exists(
|
||
|
id: 12,
|
||
|
name: 'telegram personal-message',
|
||
|
communication: true,
|
||
|
)
|
||
|
|
||
|
end
|
||
|
end
|