Farmbot-Web-App/app/models/generic_pointer.rb

7 lines
157 B
Ruby
Raw Normal View History

2019-02-19 19:10:08 -07:00
# Used by third party Farmware (eg: weed-detection) to mark points on a map.
2018-04-07 14:09:31 -06:00
class GenericPointer < Point
2018-04-23 09:35:21 -06:00
def name_used_when_syncing
"Point"
end
end