3d6d0a09b6
This allows admins to define terms in the application settings. Every time the terms are adjusted, a new version is stored and becomes the 'active' version. This allows tracking which specific version was accepted by a user.
5 lines
152 B
Ruby
5 lines
152 B
Ruby
FactoryBot.define do
|
|
factory :term, class: ApplicationSetting::Term do
|
|
terms "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
|
|
end
|
|
end
|