2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
2017-04-26 11:28:32 +00:00
|
|
|
Role.create_if_not_exists(
|
2018-12-19 17:31:51 +00:00
|
|
|
id: 1,
|
2021-11-15 15:58:19 +00:00
|
|
|
name: __('Admin'),
|
|
|
|
note: __('To configure your system.'),
|
2020-08-20 07:10:08 +00:00
|
|
|
preferences: {},
|
2017-04-26 11:28:32 +00:00
|
|
|
default_at_signup: false,
|
2018-12-19 17:31:51 +00:00
|
|
|
updated_by_id: 1,
|
|
|
|
created_by_id: 1
|
2017-04-26 11:28:32 +00:00
|
|
|
)
|
|
|
|
Role.create_if_not_exists(
|
2018-12-19 17:31:51 +00:00
|
|
|
id: 2,
|
2021-11-15 15:58:19 +00:00
|
|
|
name: __('Agent'),
|
|
|
|
note: __('To work on Tickets.'),
|
2017-04-26 11:28:32 +00:00
|
|
|
default_at_signup: false,
|
2020-08-20 07:10:08 +00:00
|
|
|
preferences: {},
|
2018-12-19 17:31:51 +00:00
|
|
|
updated_by_id: 1,
|
|
|
|
created_by_id: 1
|
2017-04-26 11:28:32 +00:00
|
|
|
)
|
|
|
|
Role.create_if_not_exists(
|
2018-12-19 17:31:51 +00:00
|
|
|
id: 3,
|
2021-11-15 15:58:19 +00:00
|
|
|
name: __('Customer'),
|
|
|
|
note: __('People who create Tickets ask for help.'),
|
2020-08-20 07:10:08 +00:00
|
|
|
preferences: {},
|
2017-04-26 11:28:32 +00:00
|
|
|
default_at_signup: true,
|
2018-12-19 17:31:51 +00:00
|
|
|
updated_by_id: 1,
|
|
|
|
created_by_id: 1
|
2017-04-26 11:28:32 +00:00
|
|
|
)
|