trabajo-afectivo/db/seeds/roles.rb

30 lines
810 B
Ruby
Raw Permalink Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
Role.create_if_not_exists(
id: 1,
name: __('Admin'),
note: __('To configure your system.'),
preferences: {},
default_at_signup: false,
updated_by_id: 1,
created_by_id: 1
)
Role.create_if_not_exists(
id: 2,
name: __('Agent'),
note: __('To work on Tickets.'),
default_at_signup: false,
preferences: {},
updated_by_id: 1,
created_by_id: 1
)
Role.create_if_not_exists(
id: 3,
name: __('Customer'),
note: __('People who create Tickets ask for help.'),
preferences: {},
default_at_signup: true,
updated_by_id: 1,
created_by_id: 1
)