17 lines
393 B
Ruby
17 lines
393 B
Ruby
|
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
|