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.

15 lines
256 B

# frozen_string_literal: true
class CookiesForm
include ActiveModel::Model
attr_accessor :accept_analytics_cookies
def consent_options
[
OpenStruct.new(id: "on", name: "Yes"),
OpenStruct.new(id: "off", name: "No"),
]
end
end