diaspora/app/controllers/dashboard_controller.rb
2010-06-17 14:29:41 -07:00

7 lines
134 B
Ruby

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