metamaps--metamaps/app/controllers/api/v2/mappings_controller.rb
2017-11-25 11:23:47 -08:00

12 lines
175 B
Ruby

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