From 2abe0c553775def38484670ab0965577c78df285 Mon Sep 17 00:00:00 2001 From: Michael Stenta Date: Fri, 15 Apr 2022 09:00:14 -0400 Subject: [PATCH] Move farm_material to optional modules. I think this was mistakenly included in default modules. The original intention was to make it optional, because its primary use-case is managing material inventories, which isn't necessary for the majority of users. --- farm.profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/farm.profile b/farm.profile index 589ca7aad..ffead1031 100644 --- a/farm.profile +++ b/farm.profile @@ -30,7 +30,6 @@ function farm_modules() { 'farm_plant' => t('Plant assets'), 'farm_animal' => t('Animal assets'), 'farm_equipment' => t('Equipment assets'), - 'farm_material' => t('Material assets'), 'farm_structure' => t('Structure assets'), 'farm_water' => t('Water assets'), 'farm_activity' => t('Activity logs'), @@ -46,6 +45,7 @@ function farm_modules() { ], 'optional' => [ 'farm_inventory' => t('Inventory management'), + 'farm_material' => t('Material assets'), 'farm_seed' => t('Seed assets'), 'farm_sensor' => t('Sensor assets'), 'farm_compost' => t('Compost assets'),