diaspora/app/controllers/application_controller.rb
2010-06-16 23:12:23 -07:00

10 lines
180 B
Ruby

class ApplicationController < ActionController::Base
protect_from_forgery
layout 'application'
def receive
puts response.inspect
puts "holy boner batman"
end
end