Skip to content

Instantly share code, notes, and snippets.

@Willianvdv
Last active January 2, 2016 09:09
Show Gist options
  • Save Willianvdv/8280916 to your computer and use it in GitHub Desktop.
Save Willianvdv/8280916 to your computer and use it in GitHub Desktop.
Spree::Admin::ProductController.class_eval do
set_callback :load_collection, :after, :funky_filter
private
def funky_filter
@collection = @collection.where(name: 'peter')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment