]> git.openstreetmap.org Git - rails.git/blob - app/models/concerns/not_redactable.rb
Bump js-yaml from 4.1.0 to 4.1.1
[rails.git] / app / models / concerns / not_redactable.rb
1 # frozen_string_literal: true
2
3 module NotRedactable
4   extend ActiveSupport::Concern
5
6   def redacted?
7     false
8   end
9
10   def redact!(_r)
11     raise OSM::APICannotRedactError
12   end
13 end