Initial commit

This commit is contained in:
2013-05-14 00:48:13 -07:00
commit ff4e7614e6
62 changed files with 1332 additions and 0 deletions
@@ -0,0 +1,3 @@
class ApplicationController < ActionController::Base
protect_from_forgery
end
+11
View File
@@ -0,0 +1,11 @@
class IpnController < ApplicationController
protect_from_forgery :except => [:create]
def create
Rails.logger.info params.inspect
@ipn = Ipn.new({:data => params.inspect})
@ipn.save
render :nothing => true
end
end