Created
March 16, 2009 21:02
-
-
Save tjweir/80070 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object MyPayPalPDT extends PayPalPDT { | |
override def pdtPath = "paypal_complete" | |
def paypalAuthToken = Props.get("paypal.authToken") openOr "cannot find auth token from props file" | |
def pdtResponse: PartialFunction[(PayPalInfo, RequestState), LiftResponse] = { | |
case _ => println("--- in pdtResponse"); DoRedirectResponse("/account_admin/index"); | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment