metamaps--metamaps/app/controllers/api/v2/mappings_controller.rb
2016-10-04 15:22:24 +08:00

11 lines
170 B
Ruby

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