diff --git a/app/controllers/start_controller.rb b/app/controllers/start_controller.rb index 318e7cace..e07615901 100644 --- a/app/controllers/start_controller.rb +++ b/app/controllers/start_controller.rb @@ -5,6 +5,14 @@ class StartController < ApplicationController end end + def download_24_25_sales_form + send_file( + Rails.root.join("public/files/2024_25_sales_paper_form.pdf"), + filename: "2024-25 Sales paper form.pdf", + type: "application/pdf", + ) + end + def download_23_24_sales_form send_file( Rails.root.join("public/files/2023_24_sales_paper_form.pdf"), @@ -21,6 +29,14 @@ class StartController < ApplicationController ) end + def download_24_25_lettings_form + send_file( + Rails.root.join("public/files/2024_25_lettings_paper_form.pdf"), + filename: "2024-25 Lettings paper form.pdf", + type: "application/pdf", + ) + end + def download_23_24_lettings_form send_file( Rails.root.join("public/files/2023_24_lettings_paper_form.pdf"), @@ -37,6 +53,38 @@ class StartController < ApplicationController ) end + def download_24_25_lettings_bulk_upload_template + send_file( + Rails.root.join("public/files/bulk-upload-lettings-template-2024-25.xlsx"), + filename: "2024-25-lettings-bulk-upload-template.xlsx", + type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", + ) + end + + def download_24_25_lettings_bulk_upload_specification + send_file( + Rails.root.join("public/files/bulk-upload-lettings-specification-2024-25.xlsx"), + filename: "2024-25-lettings-bulk-upload-specification.xlsx", + type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", + ) + end + + def download_24_25_sales_bulk_upload_template + send_file( + Rails.root.join("public/files/bulk-upload-sales-template-2024-25.xlsx"), + filename: "2024-25-sales-bulk-upload-template.xlsx", + type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", + ) + end + + def download_24_25_sales_bulk_upload_specification + send_file( + Rails.root.join("public/files/bulk-upload-sales-specification-2024-25.xlsx"), + filename: "2024-25-sales-bulk-upload-specification.xlsx", + type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", + ) + end + def download_23_24_lettings_bulk_upload_template send_file( Rails.root.join("public/files/bulk-upload-lettings-template-2023-24.xlsx"),