Skip to content

Instantly share code, notes, and snippets.

@mikecmpbll
Last active December 23, 2015 06:39
Show Gist options
  • Save mikecmpbll/6595920 to your computer and use it in GitHub Desktop.
Save mikecmpbll/6595920 to your computer and use it in GitHub Desktop.
class Client < ActiveRecord::Base
def to_param
slug
end
end
class Product < ActiveRecord::Base
def to_param
slug
end
end
resources :clients do
resources :products
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment