Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
FactoryBot.define do
|
|
|
|
factory :collection_resource, class: "CollectionResource" do
|
|
|
|
resource_type { "paper_form" }
|
|
|
|
display_name { "lettings paper form (2021 to 2022)" }
|
|
|
|
short_display_name { "Paper Form" }
|
|
|
|
year { 2024 }
|
|
|
|
log_type { "lettings" }
|
|
|
|
download_filename { "24_25_lettings_paper_form.pdf" }
|
|
|
|
mandatory { true }
|
|
|
|
trait(:additional) do
|
|
|
|
resource_type { nil }
|
|
|
|
display_name { "lettings additional resource (2024 to 2025)" }
|
|
|
|
short_display_name { "additional resource" }
|
|
|
|
year { 2024 }
|
|
|
|
log_type { "lettings" }
|
|
|
|
download_filename { "additional.pdf" }
|
|
|
|
mandatory { false }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|