openstreetmap-website/app/models/redaction.rb
2012-04-05 13:50:15 +01:00

20 lines
583 B
Ruby

##
# Redaction represents a record associated with a particular
# action on the database to hide revisions from the history
# which are not appropriate to redistribute any more.
#
# The circumstances of the redaction can be recorded in the
# record's title and description fields, which can be
# displayed linked from the redacted records.
#
class Redaction < ActiveRecord::Base
belongs_to :user
has_many :old_nodes
has_many :old_ways
has_many :old_relations
def description
RichText.new(read_attribute(:description_format), read_attribute(:description))
end
end