otwarchive-symphonyarchive/factories/admin_banner.rb
2026-03-11 22:22:11 +00:00

13 lines
215 B
Ruby

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