X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/dbe165bbb3d6eda37d9579f1ac767599f9055607..9dad99d4a42559fe5077fe59ea713301117c7080:/app/models/redaction.rb
diff --git a/app/models/redaction.rb b/app/models/redaction.rb
index fda59f33b..f4eedde0a 100644
--- a/app/models/redaction.rb
+++ b/app/models/redaction.rb
@@ -1,3 +1,20 @@
+# == Schema Information
+#
+# Table name: redactions
+#
+# id :integer not null, primary key
+# title :string
+# description :text
+# created_at :datetime
+# updated_at :datetime
+# user_id :bigint(8) 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
@@ -7,13 +24,17 @@
# record's title and description fields, which can be
# displayed linked from the redacted records.
#
-class Redaction < ActiveRecord::Base
+class Redaction < ApplicationRecord
belongs_to :user
has_many :old_nodes
has_many :old_ways
has_many :old_relations
+ 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