Commit 4acda113

mo k <mo@mokhan.ca>
2012-08-14 13:42:03
display the artists in reverse order.
1 parent d28a6d7
Changed files (1)
app
app/controllers/profiles_controller.rb
@@ -2,7 +2,7 @@ class ProfilesController < ApplicationController
   before_filter :authenticate_user!, :except => [:show]
 
   def index
-    @profiles = User.all
+    @profiles = User.all.reverse
   end
 
   def show