15 lines
401 B
Ruby
15 lines
401 B
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class Issue2608MissingTriggerPermission < ActiveRecord::Migration[5.2]
|
|
def up
|
|
return if !Setting.exists?(name: 'system_init_done')
|
|
|
|
Permission.create_if_not_exists(
|
|
name: 'admin.trigger',
|
|
note: 'Manage %s',
|
|
preferences: {
|
|
translations: ['Triggers']
|
|
},
|
|
)
|
|
end
|
|
end
|