11 lines
189 B
Ruby
11 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
|