NewsBlur/vendor/paypal/standard/ipn/forms.py
2011-10-19 18:14:56 -07:00

16 lines
436 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from vendor.paypal.standard.forms import PayPalStandardBaseForm
from vendor.paypal.standard.ipn.models import PayPalIPN
class PayPalIPNForm(PayPalStandardBaseForm):
"""
Form used to receive and record PayPal IPN notifications.
PayPal IPN test tool:
https://developer.paypal.com/us/cgi-bin/devscr?cmd=_tools-session
"""
class Meta:
model = PayPalIPN