X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/67dd9e4c9d487bdb5f38a09dc0c99def4989326e..53fe84fbef321f383cf030b99ab3401663d637e1:/app/models/redaction.rb diff --git a/app/models/redaction.rb b/app/models/redaction.rb index 28a451242..43f5b3c7b 100644 --- a/app/models/redaction.rb +++ b/app/models/redaction.rb @@ -8,7 +8,25 @@ # displayed linked from the redacted records. # class Redaction < ActiveRecord::Base - has_many :nodes - has_many :ways - has_many :relations + belongs_to :user + + has_many :old_nodes + has_many :old_ways + has_many :old_relations + + after_initialize :set_defaults + + # this method overrides the AR default to provide the rich + # text object for the description field. + def description + RichText.new(read_attribute(:description_format), read_attribute(:description)) + end + + private + + # set the default format to be markdown, in the absence of + # any other setting. + def set_defaults + self.description_format = "markdown" unless self.attribute_present?(:description_format) + end end