Skip to content
Extraits de code Groupes Projets
dashboard_controller.rb 308 octets
Newer Older
  • Learn to ignore specific revisions
  • class DashboardController < ApplicationController
    
      
      before_filter :authenticate_user!, :except => :receive
      include ApplicationHelper
    
        @posts = Post.stream
    
    
    
      def receive
        store_posts_from_xml (params[:xml])
    
    
    
        puts "holy boner batman"
        render :nothing => true
      end