metamaps--metamaps/app/controllers/api/v2/mappings_controller.rb
2017-02-09 21:47:41 +00:00

10 lines
174 B
Ruby

# frozen_string_literal: true
module Api
module V2
class MappingsController < WithUpdatesController
def searchable_columns
[]
end
end
end
end