Skip to content

Instantly share code, notes, and snippets.

@Iknewthisguy
Last active August 29, 2015 13:58
Show Gist options
  • Save Iknewthisguy/10223270 to your computer and use it in GitHub Desktop.
Save Iknewthisguy/10223270 to your computer and use it in GitHub Desktop.
Ordering association
has_many :public_photos,
-> { where(albums: {shared: 'public'})},
order: "created_at DESC",
through: :albums,
class_name: Photo,
source: :photos
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment