Skip to content

Instantly share code, notes, and snippets.

@midu
Created June 9, 2014 21:29
Show Gist options
  • Save midu/efbae5f89a9afe514fee to your computer and use it in GitHub Desktop.
Save midu/efbae5f89a9afe514fee to your computer and use it in GitHub Desktop.
def featured_portfolios_in_order
ids = Settings.featured_portfolios.keys
users = User.where(id: ids)
users.sort { |a, b| ids.index(a.id) <=> ids.index(b.id) }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment