trabajo-afectivo/db/migrate/20200923092140_issue3195_inconsistent_granular_agent_permissions_chat.rb

17 lines
393 B
Ruby
Raw Normal View History

class Issue3195InconsistentGranularAgentPermissionsChat < ActiveRecord::Migration[5.2]
def change
# return if it's a new setup
return if !Setting.exists?(name: 'system_init_done')
Permission.create_or_update(
name: 'chat',
note: 'Access to %s',
preferences: {
translations: ['Chat'],
disabled: true,
},
)
end
end