Files
danbooru/app/controllers/forum_topic_visits_controller.rb
2020-03-20 18:03:01 -05:00

9 lines
240 B
Ruby

class ForumTopicVisitsController < ApplicationController
respond_to :xml, :json
def index
@forum_topic_visits = ForumTopicVisit.where(user: CurrentUser.user).paginated_search(params)
respond_with(@forum_topic_visits)
end
end