mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-02-01 13:10:58 -05:00
14 lines
207 B
Ruby
14 lines
207 B
Ruby
module Geocodable
|
|
def self.included(base)
|
|
base.extend(self)
|
|
end
|
|
|
|
private
|
|
|
|
def empty_unwanted_geocodes
|
|
return unless location.blank?
|
|
self.latitude = nil
|
|
self.longitude = nil
|
|
end
|
|
end
|