]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/redaction.rb
Fix more rubocop style issues
[rails.git] / app / models / redaction.rb
index ca0ea7232f02755a1e7ecee454c4a49c9ed2a683..b3c5ec5ba6753469a8b87c9cf6bb6af0fb4c36e0 100644 (file)
@@ -1,10 +1,10 @@
 ##
 # 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
-# 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
@@ -14,6 +14,8 @@ class Redaction < ActiveRecord::Base
   has_many :old_ways
   has_many :old_relations
 
+  # 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