11 lines
283 B
11 lines
283 B
1 year ago
|
FactoryBot.define do
|
||
|
factory :notification do
|
||
|
title { "Notification title" }
|
||
|
link_text { "Link text" }
|
||
|
page_content { "Some html content" }
|
||
|
start_date { Time.zone.yesterday }
|
||
|
end_date { Time.zone.tomorrow }
|
||
|
show_on_unauthenticated_pages { false }
|
||
|
end
|
||
|
end
|