Skip to content

Instantly share code, notes, and snippets.

@marcelloma
Created June 24, 2015 03:39
Show Gist options
  • Save marcelloma/1064d8cefdbf28663955 to your computer and use it in GitHub Desktop.
Save marcelloma/1064d8cefdbf28663955 to your computer and use it in GitHub Desktop.
module Administration
class PartnersController < BaseController
respond_to :html
def index
authorize! :read, :partners
@partners = Partner.page(params[:page])
respond_with @partners
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment