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.
|
|
|
ActiveAdmin.register CaseLog do
|
|
|
|
# See permitted parameters documentation:
|
|
|
|
# https://github.com/activeadmin/activeadmin/blob/master/docs/2-resource-customization.md#setting-up-strong-parameters
|
|
|
|
permit_params do
|
|
|
|
CaseLog.editable_fields
|
|
|
|
end
|
|
|
|
|
|
|
|
index do
|
|
|
|
selectable_column
|
|
|
|
id_column
|
|
|
|
column :created_at
|
|
|
|
column :updated_at
|
|
|
|
column :status
|
|
|
|
column :tenant_code
|
|
|
|
column :property_postcode
|
|
|
|
column :owning_organisation
|
|
|
|
column :managing_organisation
|
|
|
|
actions
|
|
|
|
end
|
|
|
|
end
|