Commit 4acda113
Changed files (1)
app
controllers
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