metamaps--metamaps/app/controllers/api/v2/attachments_controller.rb
Devin Howard f10af09164 rubocop
2018-11-17 06:59:20 -08:00

12 lines
179 B
Ruby

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