diaspora/app/controllers/dashboards_controller.rb
2010-08-04 16:00:01 -07:00

9 lines
220 B
Ruby

class DashboardsController < ApplicationController
before_filter :authenticate_user!
include ApplicationHelper
def index
@posts = Post.paginate :page => params[:page], :order => 'created_at DESC'
end
end