7 lines
149 B
Ruby
7 lines
149 B
Ruby
class QuartierPrioritaire < ApplicationRecord
|
|
belongs_to :dossier, touch: true
|
|
|
|
def geometry
|
|
JSON.parse(read_attribute(:geometry))
|
|
end
|
|
end
|