diaspora/app/controllers/dashboard_controller.rb
2010-06-20 11:49:05 -07:00

16 lines
315 B
Ruby

class DashboardController < ApplicationController
before_filter :authenticate_user!, :except => :receive
include ApplicationHelper
def index
@bookmarks = Bookmark.all
@messages = StatusMessage.all
end
def receive
store_posts_from_xml (params[:xml])
render :nothing => true
end
end