12345678910111213141516171819 |
- # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- class PermissionAddTimeAccounting < ActiveRecord::Migration[5.1]
- def up
- # return if it's a new setup
- return if !Setting.exists?(name: 'system_init_done')
- Permission.create_if_not_exists(
- name: 'admin.time_accounting',
- note: 'Manage %s',
- preferences: {
- translations: ['Time Accounting']
- },
- )
- end
- end
|