Skip to content

Commit

Permalink
Stuff on the dashboard needs versions
Browse files Browse the repository at this point in the history
  • Loading branch information
qrush committed Oct 7, 2009
1 parent 55c2c1d commit febe71f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/controllers/dashboards_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ class DashboardsController < ApplicationController
def show
respond_to do |format|
format.html do
@my_gems = current_user.rubygems
@my_gems = current_user.rubygems.with_versions
@latest_updates = Version.subscribed_to_by(current_user).published(20)
@subscribed_gems = current_user.subscribed_gems
@subscribed_gems = current_user.subscribed_gems.with_versions
end
format.atom do
@versions = Version.subscribed_to_by(current_user).published(20)
Expand Down

0 comments on commit febe71f

Please sign in to comment.