mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
483 B
17 lines
483 B
# frozen_string_literal: true
|
|
|
|
class TemplatesSharedController < ApplicationController
|
|
def index
|
|
authorize!(:read, Template)
|
|
|
|
@templates = Templates.shared(current_user)
|
|
.active
|
|
.preload(:author, :template_accesses, :template_sharings)
|
|
.order(id: :desc)
|
|
|
|
@templates = Templates.search(current_user, @templates, params[:q])
|
|
|
|
@pagy, @templates = pagy_auto(@templates, limit: 12)
|
|
end
|
|
end
|