]> git.openstreetmap.org Git - rails.git/blob - lib/not_redactable.rb
Combine last_updated_by and last_updated_at columns on issues index
[rails.git] / lib / not_redactable.rb
1 require "osm"
2
3 module NotRedactable
4   def redacted?
5     false
6   end
7
8   def redact!(_r)
9     raise OSM::APICannotRedactError
10   end
11 end