mirror of
https://github.com/diaspora/diaspora.git
synced 2026-04-29 03:01:03 -04:00
10 lines
220 B
Ruby
10 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
|