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

12 lines
189 B
Ruby
Raw Normal View History

2016-09-24 11:00:46 +08:00
# frozen_string_literal: true
2017-11-25 11:23:47 -08:00
module Api
module V2
2017-02-09 16:53:19 -05:00
class TopicsController < WithUpdatesController
def searchable_columns
%i[name desc link]
end
end
end
end