roles.rb 810 B

1234567891011121314151617181920212223242526272829
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. Role.create_if_not_exists(
  3. id: 1,
  4. name: __('Admin'),
  5. note: __('To configure your system.'),
  6. preferences: {},
  7. default_at_signup: false,
  8. updated_by_id: 1,
  9. created_by_id: 1
  10. )
  11. Role.create_if_not_exists(
  12. id: 2,
  13. name: __('Agent'),
  14. note: __('To work on Tickets.'),
  15. default_at_signup: false,
  16. preferences: {},
  17. updated_by_id: 1,
  18. created_by_id: 1
  19. )
  20. Role.create_if_not_exists(
  21. id: 3,
  22. name: __('Customer'),
  23. note: __('People who create Tickets ask for help.'),
  24. preferences: {},
  25. default_at_signup: true,
  26. updated_by_id: 1,
  27. created_by_id: 1
  28. )