otwarchive-symphonyarchive/factories/admin_banner.rb

14 lines
215 B
Ruby
Raw Normal View History

2026-03-11 22:22:11 +00:00
require "faker"
FactoryBot.define do
factory :admin_banner do
sequence(:content) { |n| "#{Faker::Lorem.paragraph} (#{n})" }
active { false }
trait :active do
active { true }
end
end
end