Redactions support hiding historical versions of elements and collecting meta-data about that action together.
11 lines
136 B
Ruby
11 lines
136 B
Ruby
require 'osm'
|
|
|
|
module NotRedactable
|
|
def redacted?
|
|
false
|
|
end
|
|
|
|
def redact!(r)
|
|
raise OSM::APICannotRedactError.new
|
|
end
|
|
end
|