Files
danbooru/app/controllers/dtext_links_controller.rb
2019-10-23 21:36:48 -05:00

9 lines
208 B
Ruby

class DtextLinksController < ApplicationController
respond_to :html, :xml, :json
def index
@dtext_links = DtextLink.includes(:model).paginated_search(params)
respond_with(@dtext_links)
end
end