dtext links: add basic index page.

This commit is contained in:
evazion
2019-10-23 20:22:11 -05:00
parent 9f0ecf7247
commit 812cabfc07
4 changed files with 65 additions and 0 deletions

View File

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