diaspora/app/controllers/dashboard_controller.rb
2010-06-16 17:35:39 -07:00

7 lines
148 B
Ruby

class DashboardController < ApplicationController
before_filter :authenticate_user!
def index
@posts = Post.recent_ordered_posts
end
end