X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2063fc98f185e68bc655b79f6d75010ad2a6b9b3..67dd9e4c9d487bdb5f38a09dc0c99def4989326e:/app/models/redaction.rb diff --git a/app/models/redaction.rb b/app/models/redaction.rb new file mode 100644 index 000000000..28a451242 --- /dev/null +++ b/app/models/redaction.rb @@ -0,0 +1,14 @@ +## +# 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 + has_many :nodes + has_many :ways + has_many :relations +end