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

12 lines
179 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-02-06 05:43:10 +00:00
module Api
module V2
class AttachmentsController < RestfulController
def searchable_columns
[:file]
end
end
end
end