metamaps--metamaps/app/controllers/api/v2/mappings_controller.rb
2017-02-09 16:53:19 -05:00

11 lines
174 B
Ruby

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