macro.rb 379 B

12345678910111213
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. FactoryBot.define do
  3. factory :macro do
  4. sequence(:name) { |n| "Macro #{n}" }
  5. perform { { 'ticket.state_id' => { 'value' => 1 } } }
  6. ux_flow_next_up { 'next_task' }
  7. note { '' }
  8. active { true }
  9. created_by_id { 1 }
  10. updated_by_id { 1 }
  11. end
  12. end