openstreetmap-website/lib/not_redactable.rb
Matt Amos 67dd9e4c9d Adding first cut of Redactions support
Redactions support hiding historical versions of elements and
collecting meta-data about that action together.
2012-04-05 13:46:36 +01:00

11 lines
136 B
Ruby

require 'osm'
module NotRedactable
def redacted?
false
end
def redact!(r)
raise OSM::APICannotRedactError.new
end
end