11 lines
210 B
Ruby
11 lines
210 B
Ruby
class MapLocation < ActiveRecord::Base
|
|
|
|
belongs_to :proposal
|
|
belongs_to :investment, class_name: Budget::Investment
|
|
|
|
def available?
|
|
latitude.present? && longitude.present? && zoom.present?
|
|
end
|
|
|
|
end
|