Newer
Older
dmpopidor / app / controllers / paginable / orgs_controller.rb
@briley briley on 8 Feb 2018 281 bytes fixed sort issue for orgs page
class Paginable::OrgsController < ApplicationController
  include Paginable
  # /paginable/guidances/index/:page
  def index
    authorize(Org)
    paginable_renderise(
      partial: 'index',
      scope: Org.includes(:templates, :users).joins(:templates, :users)
    )
  end
end