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

12 lines
189 B
Ruby

# frozen_string_literal: true
module Api
module V2
class TopicsController < WithUpdatesController
def searchable_columns
%i[name desc link]
end
end
end
end