11 lines
267 B
Ruby
11 lines
267 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ForumTopicVisitsController < ApplicationController
|
|
respond_to :xml, :json
|
|
|
|
def index
|
|
@forum_topic_visits = ForumTopicVisit.visible(CurrentUser.user).paginated_search(params)
|
|
respond_with(@forum_topic_visits)
|
|
end
|
|
end
|