10 lines
170 B
Ruby
10 lines
170 B
Ruby
# frozen_string_literal: true
|
|
module Api
|
|
module V2
|
|
class MappingsController < RestfulController
|
|
def searchable_columns
|
|
[]
|
|
end
|
|
end
|
|
end
|
|
end
|