]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/redaction.rb
Use correct title in og:title for pages with no title
[rails.git] / app / models / redaction.rb
index a9bdf5580dc68712d1ffef58c4f4743ca9d5db6d..49de3177a127af1a0bbe260aaf1feaa15b716109 100644 (file)
@@ -1,10 +1,10 @@
 ##
 # Redaction represents a record associated with a particular
 # action on the database to hide revisions from the history
 ##
 # 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. 
+# which are not appropriate to redistribute any more.
 #
 # The circumstances of the redaction can be recorded in the
 #
 # The circumstances of the redaction can be recorded in the
-# record's title and description fields, which can be 
+# record's title and description fields, which can be
 # displayed linked from the redacted records.
 #
 class Redaction < ActiveRecord::Base
 # displayed linked from the redacted records.
 #
 class Redaction < ActiveRecord::Base
@@ -14,9 +14,12 @@ class Redaction < ActiveRecord::Base
   has_many :old_ways
   has_many :old_relations
 
   has_many :old_ways
   has_many :old_relations
 
-  # this method overrides the AR default to provide the rich 
+  validates :description, :presence => true
+  validates :description_format, :inclusion => { :in => %w(text html markdown) }
+
+  # this method overrides the AR default to provide the rich
   # text object for the description field.
   def description
   # text object for the description field.
   def description
-    RichText.new(read_attribute(:description_format), read_attribute(:description))
+    RichText.new(self[:description_format], self[:description])
   end
 end
   end
 end