]> git.openstreetmap.org Git - rails.git/blob - app/models/concerns/not_redactable.rb
Add frozen_string_literal comments to ruby files
[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