From a44871120ad6cb159cc0b3aec4554b28fa1f878d Mon Sep 17 00:00:00 2001 From: Kat Date: Thu, 24 Feb 2022 14:28:36 +0000 Subject: [PATCH] Set providertype before save --- app/admin/organisations.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/admin/organisations.rb b/app/admin/organisations.rb index 3b106c1f0..129aa8ff9 100644 --- a/app/admin/organisations.rb +++ b/app/admin/organisations.rb @@ -17,7 +17,7 @@ ActiveAdmin.register Organisation do selectable_column id_column column :name - column "Org type", :providertype + column "Org type", :provider_type column "Address Line 1", :address_line1 column "Address Line 2", :address_line2 column :postcode @@ -28,4 +28,8 @@ ActiveAdmin.register Organisation do column :managing_agents actions end + + before_save do |org| + org.provider_type = params[:organisation][:provider_type] + end end