X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/cd2ca12d4235473cd3611b84e2a61649c17da2f6..077834704e79259e60967b0cde8f8785017e9145:/app/models/redaction.rb diff --git a/app/models/redaction.rb b/app/models/redaction.rb index a9bdf5580..e6d748706 100644 --- a/app/models/redaction.rb +++ b/app/models/redaction.rb @@ -1,10 +1,27 @@ +# == Schema Information +# +# Table name: redactions +# +# id :integer not null, primary key +# title :string +# description :text +# created_at :datetime +# updated_at :datetime +# user_id :integer not null +# description_format :enum default("markdown"), not null +# +# Foreign Keys +# +# redactions_user_id_fkey (user_id => users.id) +# + ## # 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,9 +31,13 @@ class Redaction < ActiveRecord::Base has_many :old_ways has_many :old_relations - # this method overrides the AR default to provide the rich + validates :title, :presence => true, :characters => true + validates :description, :presence => true, :characters => 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 - RichText.new(read_attribute(:description_format), read_attribute(:description)) + RichText.new(self[:description_format], self[:description]) end end