Browse Source

feat: remove redundant fields (#958)

* feat: remove redundant fields

* feat: hide behaviour behind feature toggle
pull/961/head
natdeanlewissoftwire 2 years ago committed by GitHub
parent
commit
d7dab9644e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      app/models/organisation.rb

6
app/models/organisation.rb

@ -86,9 +86,9 @@ class Organisation < ApplicationRecord
{ name: "Registration number", value: housing_registration_no || "", editable: false },
{ name: "Rent_periods", value: rent_period_labels, editable: false, format: :bullet },
{ name: "Owns housing stock", value: holds_own_stock ? "Yes" : "No", editable: false },
{ name: "Other stock owners", value: other_stock_owners, editable: false },
{ name: "Managing agents", value: managing_agents_label, editable: false },
({ name: "Other stock owners", value: other_stock_owners, editable: false } unless FeatureToggle.managing_owning_enabled?),
({ name: "Managing agents", value: managing_agents_label, editable: false } unless FeatureToggle.managing_owning_enabled?),
{ name: "Data protection agreement", value: data_protection_agreement_string, editable: false },
]
].compact
end
end

Loading…
Cancel
Save