Merge pull request #1759 from FarmBot/mark_as

Plant stage updates.
pull/1760/head
Rick Carlino 2020-04-17 10:58:02 -05:00 committed by GitHub
commit 3ee1478a58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ module CeleryScriptSettingsBag
ONLY_ONE_COORD = "Move Absolute does not accept a group of locations " \
"as input. Please change your selection to a single" \
" location."
PLANT_STAGES = %w(planned planted harvested sprouted)
PLANT_STAGES = %w(planned planted harvested sprouted removed)
SCOPE_DECLARATIONS = [:variable_declaration, :parameter_declaration]
MISC_ENUM_ERR = '"%s" is not valid. Allowed values: %s'
MAX_WAIT_MS = 1000 * 60 * 3 # Three Minutes

View File

@ -1,3 +1,3 @@
class WeedSerializer < BasePointSerializer
attributes :radius, :discarded_at
attributes :radius, :discarded_at, :plant_stage
end