Created
August 11, 2009 04:40
-
-
Save sprite2005/165635 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def self.recent_activity(page = {}, options = {}) | |
page.reverse_merge! :size => 10, :current => 1 | |
options.reverse_merge! :order => 'users.created_at DESC' | |
Activity.find(:all, :page => page, *options) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment