Update PLANT_STAGES

pull/1759/head
Rick Carlino 2020-04-17 09:56:53 -05:00
parent 0e02ca06ee
commit df9e0ef26b
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