(land)
| 343 | } |
| 344 | |
| 345 | landPayload(land) { |
| 346 | const id = pickId(land); |
| 347 | return { |
| 348 | id, |
| 349 | sorghum_id: id, |
| 350 | member_sorghum_id: id, |
| 351 | land_id: id, |
| 352 | }; |
| 353 | } |
| 354 | |
| 355 | async harvestFarm(lands) { |
| 356 | const candidates = lands.filter(isHarvestable); |
no test coverage detected