signature.rb 347 B

12345678910
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. FactoryBot.define do
  3. factory :signature do
  4. sequence(:name) { |n| "Test signature #{n}" }
  5. body { '#{user.firstname} #{user.lastname}'.text2html } # rubocop:disable Lint/InterpolationCheck
  6. created_by_id { 1 }
  7. updated_by_id { 1 }
  8. end
  9. end