Skip to content

Instantly share code, notes, and snippets.

@bdarfler
Created May 23, 2018 17:05
Show Gist options
  • Save bdarfler/70fe90d3267a0f1c7ff016208de72ca7 to your computer and use it in GitHub Desktop.
Save bdarfler/70fe90d3267a0f1c7ff016208de72ca7 to your computer and use it in GitHub Desktop.
class User < ActiveRecord::Base
def recent_activities(limit)
[comments, items.map(&:comments), bids].
flatten.
sort_by(&:created_at).
first(limit)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment