metamaps--metamaps/app/controllers/api/v2/mappings_controller.rb

12 lines
175 B
Ruby
Raw Normal View History

2016-09-24 03:00:46 +00:00
# frozen_string_literal: true
2017-11-25 19:23:47 +00:00
module Api
module V2
2017-02-09 21:53:19 +00:00
class MappingsController < WithUpdatesController
def searchable_columns
[]
end
end
end
end