rosa-build/app/controllers/activity_feeds_controller.rb

8 lines
188 B
Ruby
Raw Normal View History

class ActivityFeedsController < ApplicationController
before_filter :authenticate_user!
def index
2012-02-14 16:09:41 +00:00
@activity_feeds = current_user.activity_feeds.order('created_at DESC')
end
end