add templates and submissions search

This commit is contained in:
Alex Turchyn
2023-09-15 02:11:48 +03:00
parent 7f6c0af0e8
commit 53fa35fd01
12 changed files with 101 additions and 23 deletions
@@ -3,6 +3,7 @@
class TemplatesArchivedController < ApplicationController
def index
templates = current_account.templates.where.not(deleted_at: nil).preload(:author).order(id: :desc)
templates = Templates.search(templates, params[:q])
@pagy, @templates = pagy(templates, items: 12)
end