diaspora/app/controllers/dashboard_controller.rb
2010-06-18 23:32:47 -07:00

15 lines
282 B
Ruby

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